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:
Devin AI 2025-09-19 22:48:11 +00:00
parent f8292afbd7
commit 07644d62ba
1 changed files with 1 additions and 1 deletions

View File

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