mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Merge pull request #2432 from appwrite/fix-double-increment-decrement
This commit is contained in:
+1
-1
@@ -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} />
|
||||
|
||||
+1
-1
@@ -297,7 +297,7 @@
|
||||
switch (type) {
|
||||
case 'string':
|
||||
return IconText;
|
||||
case 'float':
|
||||
case 'double':
|
||||
case 'integer':
|
||||
return IconHashtag;
|
||||
case 'boolean':
|
||||
|
||||
Reference in New Issue
Block a user