adding spaces to some places since libra cart is two words
This commit is contained in:
parent
5636b70fa7
commit
b8a9f6b497
4 changed files with 10 additions and 9 deletions
|
|
@ -485,6 +485,7 @@ export default function BinSettings(props: Props) {
|
|||
form.inventory.inventoryControl = inventoryControl
|
||||
form.inventory.autoThreshold = autoFillThreshold
|
||||
}
|
||||
console.log(form)
|
||||
binAPI
|
||||
.updateBin(bin.key(), form, as)
|
||||
.then(response => {
|
||||
|
|
@ -741,7 +742,7 @@ export default function BinSettings(props: Props) {
|
|||
case pond.BinInventoryControl.BIN_INVENTORY_CONTROL_HYBRID_LIDAR:
|
||||
return "Hybrid (lidar)"
|
||||
case pond.BinInventoryControl.BIN_INVENTORY_CONTROL_LIBRACART:
|
||||
return "Auto (LibraCart)"
|
||||
return "Auto (Libra Cart)"
|
||||
default:
|
||||
return "Manual"
|
||||
}
|
||||
|
|
@ -905,7 +906,7 @@ export default function BinSettings(props: Props) {
|
|||
<FormControlLabel
|
||||
value={pond.BinInventoryControl.BIN_INVENTORY_CONTROL_LIBRACART}
|
||||
control={<Radio />}
|
||||
label={"Auto (LibraCart)"}
|
||||
label={"Auto (Libra Cart)"}
|
||||
/>
|
||||
}
|
||||
</RadioGroup>
|
||||
|
|
@ -951,7 +952,7 @@ export default function BinSettings(props: Props) {
|
|||
{inventoryControl === pond.BinInventoryControl.BIN_INVENTORY_CONTROL_LIBRACART &&
|
||||
<Box width="100%" padding={2}>
|
||||
<SearchSelect
|
||||
label="LibraCart Destination"
|
||||
label="Libra Cart Destination"
|
||||
selected={lcDestination}
|
||||
changeSelection={option => {
|
||||
let newForm = form;
|
||||
|
|
@ -963,7 +964,7 @@ export default function BinSettings(props: Props) {
|
|||
options={lcDestinationOptions}
|
||||
/>
|
||||
<Typography variant="caption">
|
||||
The linked bins inventory will be adjusted When the LibraCart Destination data is synced every 6 hours
|
||||
The linked bins inventory will be adjusted When the Libra Cart Destination data is synced every 6 hours
|
||||
</Typography>
|
||||
</Box>
|
||||
}
|
||||
|
|
|
|||
|
|
@ -196,7 +196,7 @@ export default function LibraCartAccess() {
|
|||
</Grid>
|
||||
</Grid>
|
||||
<Grid>
|
||||
<Tooltip title={"This will Sync the data for all LibraCart accounts linked to " + (as ? "this team" : "your account")}>
|
||||
<Tooltip title={"This will Sync the data for all Libra Cart accounts linked to " + (as ? "this team" : "your account")}>
|
||||
<Button
|
||||
variant="contained"
|
||||
color="primary"
|
||||
|
|
@ -210,7 +210,7 @@ export default function LibraCartAccess() {
|
|||
</Grid>
|
||||
<Box paddingTop={2}>
|
||||
<Typography>
|
||||
LibraCart 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. It may take up to 15 minutes for the data to appear in our platform.
|
||||
</Typography>
|
||||
</Box>
|
||||
|
||||
|
|
|
|||
|
|
@ -480,7 +480,7 @@ export default function SideNavigator(props: Props) {
|
|||
</Tooltip>
|
||||
}
|
||||
{user.hasFeature("libra-cart") &&
|
||||
<Tooltip title="LibraCart" placement="right">
|
||||
<Tooltip title="Libra Cart" placement="right">
|
||||
<ListItemButton
|
||||
id="tour-libraCart"
|
||||
onClick={() => goTo("/libracart")}
|
||||
|
|
@ -489,7 +489,7 @@ export default function SideNavigator(props: Props) {
|
|||
<ListItemIcon>
|
||||
<LibraCartIcon />
|
||||
</ListItemIcon>
|
||||
{open && <ListItemText primary="LibraCart" />}
|
||||
{open && <ListItemText primary="Libra Cart" />}
|
||||
</ListItemButton>
|
||||
</Tooltip>
|
||||
}
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ export default function LibraCart() {
|
|||
<Grid>
|
||||
<Select
|
||||
//style={{ maxWidth: 110 }}
|
||||
title="LibraCart Account"
|
||||
title="Libra Cart Account"
|
||||
displayEmpty
|
||||
disableUnderline={true}
|
||||
value={currentOrg}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue