hotfix - making high the default display for the grain temp for bins and binVisualizer
This commit is contained in:
parent
bdddcfc103
commit
41f3374982
2 changed files with 2 additions and 2 deletions
|
|
@ -258,7 +258,7 @@ export default function BinVisualizer(props: Props) {
|
|||
//const [highTempCable, setHighTempCable] = useState<GrainCable>();
|
||||
//const [lowTempCable, setLowTempCable] = useState<GrainCable>();
|
||||
//the switch value to determine what to display in the grain condition box
|
||||
const [valueDisplay, setValueDisplay] = useState<"low" | "avg" | "high">("avg");
|
||||
const [valueDisplay, setValueDisplay] = useState<"low" | "avg" | "high">("high");
|
||||
//the variables to be able to change the grain type through a unique dialog outside of the settings
|
||||
const [grainChangeDialog, setGrainChangeDialog] = useState(false);
|
||||
const grainOptions = GrainOptions();
|
||||
|
|
|
|||
|
|
@ -196,7 +196,7 @@ export default function Bins(props: Props) {
|
|||
const { openSnack } = useSnackbar();
|
||||
// const history = useHistory();
|
||||
const navigate = useNavigate()
|
||||
const [cardValDisplay, setCardValDisplay] = useState<"high" | "low" | "average">("average");
|
||||
const [cardValDisplay, setCardValDisplay] = useState<"high" | "low" | "average">("high");
|
||||
|
||||
const [teamsDialog, setTeamsDialog] = useState(false)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue