aboutsummaryrefslogtreecommitdiff
path: root/src/components/opacity_input/opacity_input.vue
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-03-24 11:41:39 +0200
committerHenry Jameson <me@hjkos.com>2022-03-24 11:41:39 +0200
commit4539feed409e7f934f5d9d3ccd4944b34350fa2a (patch)
tree3aca80c95b87c99551dd39f7116b43379d35c1b0 /src/components/opacity_input/opacity_input.vue
parent97930020706c938d9237cdc3770fab11b03bedc1 (diff)
fix checkboxes, specifically the NSFW one
Diffstat (limited to 'src/components/opacity_input/opacity_input.vue')
-rw-r--r--src/components/opacity_input/opacity_input.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/opacity_input/opacity_input.vue b/src/components/opacity_input/opacity_input.vue
index e1d31fc2..faf07288 100644
--- a/src/components/opacity_input/opacity_input.vue
+++ b/src/components/opacity_input/opacity_input.vue
@@ -11,7 +11,7 @@
</label>
<Checkbox
v-if="typeof fallback !== 'undefined'"
- :checked="present"
+ :modelValue="present"
:disabled="disabled"
class="opt"
@change="$emit('update:modelValue', !present ? fallback : undefined)"