Skip to content

Commit 176591b

Browse files
committed
fix: checkbox for example content
Signed-off-by: Daniel Kesselberg <[email protected]>
1 parent e98864b commit 176591b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/dav/src/components/ExampleContactSettings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<template>
77
<div class="example-contact-settings">
88
<NcCheckboxRadioSwitch
9-
:checked="enableDefaultContact"
9+
:model-value="enableDefaultContact"
1010
type="switch"
1111
@update:model-value="updateEnableDefaultContact">
1212
{{ t('dav', "Add example contact to user's address book when they first log in") }}

apps/dav/src/components/ExampleEventSettings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<template>
77
<div class="example-event-settings">
88
<NcCheckboxRadioSwitch
9-
:checked="createExampleEvent"
9+
:model-value="createExampleEvent"
1010
:disabled="savingConfig"
1111
type="switch"
1212
@update:model-value="updateCreateExampleEvent">

0 commit comments

Comments
 (0)