Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/NcCheckboxRadioSwitch/NcCheckboxContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
'checkbox-content__icon--checked': isChecked,
[iconClass]: true
}"
:aria-hidden="true">
:aria-hidden="true"
inert>
<!-- @slot The checkbox/radio icon, you can use it for adding an icon to the button variant
@binding {bool} checked The input checked state
@binding {bool} loading The loading state
Expand All @@ -52,7 +53,7 @@
</slot>
</span>

<span :class="['checkbox-content__text', textClass]">
<span v-if="$slots.default" :class="['checkbox-content__text', textClass]">
<!-- @slot The checkbox/radio label -->
<slot />
</span>
Expand Down