Merge pull request #2432 from appwrite/fix-double-increment-decrement

This commit is contained in:
Darshan
2025-10-01 17:45:27 +05:30
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -31,5 +31,5 @@
min={column.min}
max={column.max}
required={column.required}
step={column.type === 'double' ? 'any' : 1}
step={column.type === 'double' ? 0.1 : 1}
leadingIcon={!limited ? IconHashtag : undefined} />
@@ -297,7 +297,7 @@
switch (type) {
case 'string':
return IconText;
case 'float':
case 'double':
case 'integer':
return IconHashtag;
case 'boolean':