Skip to content

Commit

Permalink
fix: unfocus CvCheckbox (add missing 'value' access to ref) (#1595)
Browse files Browse the repository at this point in the history
  • Loading branch information
OlkaB committed Jun 3, 2024
1 parent 6dde19e commit fb225c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/CvCheckbox/CvCheckbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ const props = defineProps({
// Track focus
let hasFocus = ref(false);
function onFocus() {
hasFocus = true;
hasFocus.value = true;
}
function onBlur() {
hasFocus = false;
hasFocus.value = false;
}
const cvId = useCvId(props);
Expand Down

0 comments on commit fb225c0

Please sign in to comment.