Commit 1365217c7f208f019ea04e79a08bf4a3bfe2ed3e

Authored by ww
1 parent 517701ec

fix: 修复枚举值输入框小数点被替换为0

... ... @@ -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: {
... ...