mirror of https://github.com/buster-so/buster.git
Merge pull request #1016 from buster-so/devin/BUS-1852-1758322003
fix: Update max decimal places from 10 to 7 in EditDecimals component
This commit is contained in:
commit
2f8930e1fb
|
@ -48,6 +48,7 @@ export const EditDecimals: React.FC<{
|
|||
<div className="flex w-full items-center space-x-2" data-testid="edit-decimals-input">
|
||||
<InputNumber
|
||||
min={0}
|
||||
max={7}
|
||||
prefix="Min"
|
||||
defaultValue={min}
|
||||
className="w-full!"
|
||||
|
@ -55,7 +56,8 @@ export const EditDecimals: React.FC<{
|
|||
/>
|
||||
<InputNumber
|
||||
prefix="Max"
|
||||
max={10}
|
||||
min={0}
|
||||
max={7}
|
||||
defaultValue={max}
|
||||
className="w-full!"
|
||||
onChange={(value) => handleMaxChange(value)}
|
||||
|
|
Loading…
Reference in New Issue