Skip to content

Commit

Permalink
Merge pull request #5018 from nextcloud-libraries/refactor/NcCheckbox…
Browse files Browse the repository at this point in the history
…RadioSwitch--single-root-node
  • Loading branch information
skjnldsv authored Jan 2, 2024
2 parents 9fd3475 + c9f5f67 commit c53309f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/NcCheckboxRadioSwitch/NcCheckboxContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
-->

<template>
<!--
label can't be used here because of shift+click firefox bug
https://bugzilla.mozilla.org/show_bug.cgi?id=559506
-->
<span :id="!isButtonType ? `${id}-label` : null"
<span :id="!isButtonType ? `${id}-label` : undefined"
class="checkbox-content"
:class="{
['checkbox-content-' + type]: true,
'checkbox-content--button-variant': buttonVariant,
}">
<!--
label can't be used here because of shift+click firefox bug
https://bugzilla.mozilla.org/show_bug.cgi?id=559506
-->
<span :class="{
'checkbox-content__icon': true,
'checkbox-content__icon--checked': isChecked,
Expand Down

0 comments on commit c53309f

Please sign in to comment.