Sign in
简柏林
/
thingskit-front
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
1365217c7f208f019ea04e79a08bf4a3bfe2ed3e
Authored by
ww
2023-12-22 15:51:31 +0800
1 parent
517701ec
fix: 修复枚举值输入框小数点被替换为0
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/components/Form/src/externalCompns/components/StructForm/EnumList.config.ts
src/components/Form/src/externalCompns/components/StructForm/EnumList.config.ts
View file @
1365217
...
...
@@ -21,7 +21,7 @@ export const getFormSchemas = (): FormSchema[] => {
21
21
min: -2147483648,
22
22
max: 2147483647,
23
23
step: 1,
24
-
decimalSeparator
: 0,
24
+
precision
: 0,
25
25
};
26
26
},
27
27
colProps: {
...
...