1
0
Fork 0

fix(shared): No need to divide config.dflt by 100 again

This commit is contained in:
Jonathan Haas 2024-03-12 18:52:06 +01:00
parent 67fa4b8d65
commit 8c887ced9c

View file

@ -12,7 +12,7 @@ import {
const PctOptionInput = (props) => {
const { config, settings, changed } = props
const currentOrDefault = changed ? props.current : config.dflt / 100
const currentOrDefault = changed ? props.current : config.dflt
return (
<PctInput {...props}>