Merge branch 'reverse_nodes' into staging_environment

This commit is contained in:
csawatzky 2025-11-14 16:25:55 -06:00
commit 965738fedd
4 changed files with 66 additions and 5 deletions

View file

@ -2250,11 +2250,13 @@ export default function BinSettings(props: Props) {
</Grid>
</Grid>
</Box>
{!isCustomInventory && (
<Box marginTop={1}>
<Typography variant="body1" align="center" gutterBottom>
Moisture
</Typography>
{isCustomInventory && (
<Typography variant="caption">You are using a custom Grain type, the drying estimate may not be accurate</Typography>
)}
<Box marginTop={1}>
<TextField
label="Target EMC"
@ -2346,7 +2348,7 @@ export default function BinSettings(props: Props) {
</Grid>
</Grid>
</Box>
)}
</Box>
);
};