diff --git a/src/client/app/common/views/components/ui/switch.vue b/src/client/app/common/views/components/ui/switch.vue index a653e9df6..8e3997ae7 100644 --- a/src/client/app/common/views/components/ui/switch.vue +++ b/src/client/app/common/views/components/ui/switch.vue @@ -49,6 +49,7 @@ export default Vue.extend({ }, methods: { toggle() { + if (this.disabled) return; this.$emit('change', !this.checked); } }