fix(client): boolean type crash in variable input (#5357)

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")}}',