Skip to content

Commit

Permalink
Change some text to be more understandable
Browse files Browse the repository at this point in the history
  • Loading branch information
MP3Martin committed Dec 12, 2022
1 parent cdf3d9f commit 3b63956
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NextJS_web_GUI/components/input/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function Input(props) {
// const [showDelay, setShowDelay] = useState(false);

useEffect(() => {
if (winWidth <= 1173) {
if (winWidth <= 1143) {
setGlobalState("outputOptionsHaveAcordicon", true)
} else {
setGlobalState("outputOptionsHaveAcordicon", false)
Expand Down
4 changes: 2 additions & 2 deletions NextJS_web_GUI/components/input/outputOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ const OutputOptions = (props) => {
<FormControlLabel control={<Checkbox checked={enableAnimations} onChange={() => { setEnableAnimations(!enableAnimations) }} />} label="Animations" />
</Box>
<Box
sx={outputOptionsDefaultBox("12.8rem")}
sx={outputOptionsDefaultBox("11.2rem")}
>
<FormControlLabel control={<Checkbox checked={enableDecimalNumbers} onChange={() => { setEnableDecimalNumbers(!enableDecimalNumbers) }} />} label="Decimal numbers" />
<FormControlLabel control={<Checkbox checked={enableDecimalNumbers} onChange={() => { setEnableDecimalNumbers(!enableDecimalNumbers) }} />} label="Decimal result" />
</Box>

<Snackbar open={copiedOpen} autoHideDuration={1500} onClose={() => { setCopiedOpen(false) }}>
Expand Down

0 comments on commit 3b63956

Please sign in to comment.