diff --git a/src/assets/marketplaceImages/Libra_Cart_temp.jpg b/src/assets/marketplaceImages/Libra_Cart_temp.jpg
new file mode 100644
index 0000000..a6ff0cc
Binary files /dev/null and b/src/assets/marketplaceImages/Libra_Cart_temp.jpg differ
diff --git a/src/bin/BinsList.tsx b/src/bin/BinsList.tsx
index 3ae7428..71a9240 100644
--- a/src/bin/BinsList.tsx
+++ b/src/bin/BinsList.tsx
@@ -22,6 +22,7 @@ interface Props {
loadMore?: () => void;
//startingTranslate: number;
valDisplay?: "high" | "low" | "average";
+ insert?: boolean
}
const useStyles = makeStyles((_theme) => {
@@ -39,7 +40,7 @@ const useStyles = makeStyles((_theme) => {
});
export default function BinsList(props: Props) {
- const { bins, duplicateBin, title, gridView, loadMore, valDisplay } = props;
+ const { bins, duplicateBin, title, gridView, loadMore, valDisplay, insert } = props;
const classes = useStyles();
// const history = useHistory();
const navigate = useNavigate()
@@ -114,7 +115,12 @@ export default function BinsList(props: Props) {
{bins.map((b, i) =>
(
createStyles({});
@@ -249,18 +251,30 @@ class DateSelect extends React.Component {
onClose={this.closeDateRangeDialog}
aria-labelledby="date-range-dialog">
- {/* this.updateDateRange(date)}
- renderInput={(startProps, endProps) => (
-
-
- to
-
-
- )}
- /> */}
+ {
+ let range = cloneDeep(dateRange)
+ range[0] = moment(e.target.value)
+ this.updateDateRange(range)
+ }}
+ />
+ {
+ let range = cloneDeep(dateRange)
+ range[1] = moment(e.target.value)
+ this.updateDateRange(range)
+ }}
+ />
- Libra Cart data will sync every 6 hours, if the data is needed immediately you can select the Sync button. It may take up to 15 minutes for the data to appear in our platform.
+ Libra Cart data will sync every 6 hours, if the data is needed immediately you can select the Sync button.
diff --git a/src/userFeatures/UserFeatures.tsx b/src/userFeatures/UserFeatures.tsx
index d22b4e8..fa797a1 100644
--- a/src/userFeatures/UserFeatures.tsx
+++ b/src/userFeatures/UserFeatures.tsx
@@ -17,6 +17,7 @@ import FeatureCard from "./FeatureCard";
//import { ImgIcon } from "common/ImgIcon";
//images to import for the image in the card for the feature make sure to have a 2:1 aspect ratio to keep the cards symmetrical
import FeatureImageTest from "assets/marketplaceImages/VisualFarmMPImage.png";
+import LibraCartImage from "assets/marketplaceImages/Libra_Cart_temp.jpg";
// export interface FAQ {
// question: string;
@@ -62,14 +63,14 @@ const agFeatureList: ProductDetails[] = [
// bulletPoints: ["bullet one", "bullet two"],
// questions: [],
},
- // {
- // featureName: "libra-cart",
- // featureLogo: ,
- // featureCost: 0,
- // cardImage: FeatureImageTest,
- // featureTitle: "Libra Cart",
- // longDescription: "Integrate with Libra Cart to bring your data into our platform"
- // }
+ {
+ featureName: "libra-cart",
+ featureLogo: ,
+ featureCost: 0,
+ cardImage: LibraCartImage,
+ featureTitle: "Libra Cart",
+ longDescription: "Integrate with Libra Cart to bring your data into our platform"
+ }
];
// const constructionFeatureList: ProductDetails[] = []