Skip to content

Commit

Permalink
fix(checkbox): change trigger form validation. (#6741)
Browse files Browse the repository at this point in the history
  • Loading branch information
kovsu authored Jul 31, 2023
1 parent 9d406ab commit 5279d12
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/checkbox/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export default defineComponent({
const targetChecked = event.target.checked;
emit('update:checked', targetChecked);
emit('change', event);
formItemContext.onFieldChange();
};
const checkboxRef = ref();
const focus = () => {
Expand Down

0 comments on commit 5279d12

Please sign in to comment.