Skip to content

Commit

Permalink
fix: checkbox input type
Browse files Browse the repository at this point in the history
  • Loading branch information
vasyl-ivanchuk committed Feb 5, 2024
1 parent 9532882 commit 3688a42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/components/common/CheckBoxInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
});
Expand Down

0 comments on commit 3688a42

Please sign in to comment.