diff --git a/packages/app/src/components/common/CheckBoxInput.vue b/packages/app/src/components/common/CheckBoxInput.vue index ac878bbec0..e0a8323868 100644 --- a/packages/app/src/components/common/CheckBoxInput.vue +++ b/packages/app/src/components/common/CheckBoxInput.vue @@ -15,11 +15,11 @@ export default { import { computed } from "vue"; const props = defineProps({ modelValue: { - type: [Boolean], + type: Boolean, default: null, }, value: { - type: [Boolean], + type: Boolean, required: true, }, });