fix: admin/config: limit sending empty string

Massimo Melina committed Mar 16, 2022 at 19:35 UTC b85c7d52d8726832d2589d564be60339f2b6a0cd
1 file changed +1 -1
admin/src/ConfigPage.ts
+1 -1
@@ -28,7 +28,7 @@ export default function ConfigPage() {
28 comp: NumberField,
29 min: 1,
30 placeholder: "no limit",
31 - onChange: (v: any) => v < 1 ? '' : v
31 + onChange: (v: any) => v < 1 ? null : v,
32 }
33 return h(Form, {
34 sx: { maxWidth: '60em' },