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:
Nate Kelley 2025-09-20 15:14:50 -06:00 committed by GitHub
commit 2f8930e1fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -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)}