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/files/src/views/Settings.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/files/src/views/Settings.vue')
-rw-r--r-- | apps/files/src/views/Settings.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/src/views/Settings.vue b/apps/files/src/views/Settings.vue index 82580d7c504..957b26b30dc 100644 --- a/apps/files/src/views/Settings.vue +++ b/apps/files/src/views/Settings.vue @@ -22,10 +22,10 @@ <template> <NcAppSettingsDialog :open="open" :show-navigation="true" - :title="t('files', 'Files settings')" + :name="t('files', 'Files settings')" @update:open="onClose"> <!-- Settings API--> - <NcAppSettingsSection id="settings" :title="t('files', 'Files settings')"> + <NcAppSettingsSection id="settings" :name="t('files', 'Files settings')"> <NcCheckboxRadioSwitch :checked="userConfig.sort_favorites_first" @update:checked="setConfig('sort_favorites_first', $event)"> {{ t('files', 'Sort favorites first') }} @@ -43,14 +43,14 @@ <!-- Settings API--> <NcAppSettingsSection v-if="settings.length !== 0" id="more-settings" - :title="t('files', 'Additional settings')"> + :name="t('files', 'Additional settings')"> <template v-for="setting in settings"> <Setting :key="setting.name" :el="setting.el" /> </template> </NcAppSettingsSection> <!-- Webdav URL--> - <NcAppSettingsSection id="webdav" :title="t('files', 'WebDAV')"> + <NcAppSettingsSection id="webdav" :name="t('files', 'WebDAV')"> <NcInputField id="webdav-url-input" :show-trailing-button="true" :success="webdavUrlCopied" |