Skip to content

Commit

Permalink
fix(Options): Fix v-switch input
Browse files Browse the repository at this point in the history
fixes #1493

Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Dec 23, 2023
1 parent 2bedca7 commit 86a97ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ui/components/OptionsGoogleDrive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</v-card-title>
<v-card-text>
<v-switch
:value="enabled"
:input-value="enabled"
:aria-label="t('LabelAutosync')"
:label="t('LabelAutosync')"
dense
Expand Down
2 changes: 1 addition & 1 deletion src/ui/components/OptionsNextcloudBookmarks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
</v-card-title>
<v-card-text>
<v-switch
:value="enabled"
:input-value="enabled"
:aria-label="t('LabelAutosync')"
:label="t('LabelAutosync')"
dense
Expand Down
2 changes: 1 addition & 1 deletion src/ui/components/OptionsWebdav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</v-card-title>
<v-card-text>
<v-switch
:value="enabled"
:input-value="enabled"
:aria-label="t('LabelAutosync')"
:label="t('LabelAutosync')"
dense
Expand Down

0 comments on commit 86a97ce

Please sign in to comment.