diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-07-23 02:03:13 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-08-02 15:19:26 +0200 |
commit | 663db2bb3439e191a9969aaa56cf8f936f1579e2 (patch) | |
tree | 4f8a4e5977bc67dada692ca8ae1b52653950c682 /apps/settings/src/components/Users/UserSettingsDialog.vue | |
parent | 114cad3812839afa00f4144b7029ccf882bbea75 (diff) | |
download | nextcloud-server-663db2bb3439e191a9969aaa56cf8f936f1579e2.tar.gz nextcloud-server-663db2bb3439e191a9969aaa56cf8f936f1579e2.zip |
chore: Update nextcloud-vue to v8 beta2 and renamed changed properties
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/settings/src/components/Users/UserSettingsDialog.vue')
-rw-r--r-- | apps/settings/src/components/Users/UserSettingsDialog.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings/src/components/Users/UserSettingsDialog.vue b/apps/settings/src/components/Users/UserSettingsDialog.vue index 818f5bd9c7f..79f7d72c5d5 100644 --- a/apps/settings/src/components/Users/UserSettingsDialog.vue +++ b/apps/settings/src/components/Users/UserSettingsDialog.vue @@ -23,9 +23,9 @@ <template> <NcAppSettingsDialog :open.sync="isModalOpen" :show-navigation="true" - :title="t('settings', 'User management settings')"> + :name="t('settings', 'User management settings')"> <NcAppSettingsSection id="visibility-settings" - :title="t('settings', 'Visibility')"> + :name="t('settings', 'Visibility')"> <NcCheckboxRadioSwitch type="switch" data-test="showLanguages" :checked.sync="showLanguages"> @@ -49,7 +49,7 @@ </NcAppSettingsSection> <NcAppSettingsSection id="email-settings" - :title="t('settings', 'Send email')"> + :name="t('settings', 'Send email')"> <NcCheckboxRadioSwitch type="switch" data-test="sendWelcomeMail" :checked.sync="sendWelcomeMail" @@ -59,7 +59,7 @@ </NcAppSettingsSection> <NcAppSettingsSection id="default-settings" - :title="t('settings', 'Defaults')"> + :name="t('settings', 'Defaults')"> <label for="default-quota-select">{{ t('settings', 'Default quota') }}</label> <NcSelect v-model="defaultQuota" input-id="default-quota-select" |