analog input fields, package update

This commit is contained in:
MichaelDvP
2022-11-27 22:08:20 +01:00
parent d583409af4
commit f41f7c0769
4 changed files with 446 additions and 416 deletions

View File

@@ -1123,7 +1123,7 @@ const DashboardData: FC = () => {
type="number"
variant="outlined"
onChange={updateValue(setAnalog)}
inputProps={{ min: '0', step: '1' }}
inputProps={{ step: '0.001' }}
/>
</Grid>
)}
@@ -1136,7 +1136,7 @@ const DashboardData: FC = () => {
type="number"
variant="outlined"
onChange={updateValue(setAnalog)}
inputProps={{ min: '-100', max: '100', step: '0.1' }}
inputProps={{ step: '0.001' }}
/>
</Grid>
</>