From 3688a42edb8b8b7a20ba5ac8eefade961bef9b05 Mon Sep 17 00:00:00 2001 From: Vasyl Ivanchuk Date: Mon, 5 Feb 2024 17:53:34 +0200 Subject: [PATCH] fix: checkbox input type --- packages/app/src/components/common/CheckBoxInput.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, }, });