diff options
Diffstat (limited to 'packages/frontend/src/components/MkSwitch.vue')
| -rw-r--r-- | packages/frontend/src/components/MkSwitch.vue | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/frontend/src/components/MkSwitch.vue b/packages/frontend/src/components/MkSwitch.vue index 8e946e7437..2e2c0e15a2 100644 --- a/packages/frontend/src/components/MkSwitch.vue +++ b/packages/frontend/src/components/MkSwitch.vue @@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only --> <template> -<div :class="[$style.root, { [$style.disabled]: disabled, [$style.checked]: checked }]"> +<div :class="[$style.root, { [$style.disabled]: disabled }]"> <input ref="input" type="checkbox" @@ -64,9 +64,6 @@ const toggle = () => { opacity: 0.6; cursor: not-allowed; } - - //&.checked { - //} } .input { |