fix(shared): No need to divide config.dflt by 100 again
This commit is contained in:
parent
67fa4b8d65
commit
8c887ced9c
1 changed files with 1 additions and 1 deletions
|
@ -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}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue