fix(client): boolean type crash in variable input (#5357)
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
Build Pro Image / build-and-push (push) Has been cancelled
E2E / Build (push) Has been cancelled
NocoBase FrontEnd Test / frontend-test (18) (push) Has been cancelled
E2E / Core and plugins (push) Has been cancelled
E2E / plugin-workflow (push) Has been cancelled
E2E / plugin-workflow-approval (push) Has been cancelled
E2E / plugin-data-source-main (push) Has been cancelled
E2E / Comment on PR (push) Has been cancelled

This commit is contained in:
Junyi 2024-10-05 09:30:46 +08:00 committed by GitHub
parent 164847d9a6
commit a2698003bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,7 +92,9 @@ const ConstantTypes = {
/>
);
},
default: false,
default() {
return false;
},
},
date: {
label: '{{t("Date")}}',