Skip to content

Commit b517b5b

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

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/dav/src/components/ExampleContactSettings.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<template>
77
<div class="example-contact-settings">
88
<NcCheckboxRadioSwitch
9-
:checked="enableDefaultContact"
9+
:modelValue="enableDefaultContact"
1010
type="switch"
11-
@update:model-value="updateEnableDefaultContact">
11+
@update:modelValue="updateEnableDefaultContact">
1212
{{ t('dav', "Add example contact to user's address book when they first log in") }}
1313
</NcCheckboxRadioSwitch>
1414
<div v-if="enableDefaultContact" class="example-contact-settings__buttons">

apps/dav/src/components/ExampleEventSettings.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<template>
77
<div class="example-event-settings">
88
<NcCheckboxRadioSwitch
9-
:checked="createExampleEvent"
9+
:modelValue="createExampleEvent"
1010
:disabled="savingConfig"
1111
type="switch"
12-
@update:model-value="updateCreateExampleEvent">
12+
@update:modelValue="updateCreateExampleEvent">
1313
{{ t('dav', "Add example event to user's calendar when they first log in") }}
1414
</NcCheckboxRadioSwitch>
1515
<div

0 commit comments

Comments
 (0)