mirror of https://github.com/buster-so/buster.git
fix: Update max decimal places from 10 to 7 in EditDecimals component
- Change max property from 10 to 7 for InputNumber with prefix='Max' - Addresses ticket BUS-1852 for decimal place input constraints Ticket: BUS-1852 Co-Authored-By: nate@buster.so <nate@buster.so>
This commit is contained in:
parent
f8292afbd7
commit
07644d62ba
|
@ -55,7 +55,7 @@ export const EditDecimals: React.FC<{
|
|||
/>
|
||||
<InputNumber
|
||||
prefix="Max"
|
||||
max={10}
|
||||
max={7}
|
||||
defaultValue={max}
|
||||
className="w-full!"
|
||||
onChange={(value) => handleMaxChange(value)}
|
||||
|
|
Loading…
Reference in New Issue