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/updatenotification | |
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/updatenotification')
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index c8374a12195..e93b03850cc 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -1,5 +1,5 @@ <template> - <NcSettingsSection id="updatenotification" :title="t('updatenotification', 'Update')"> + <NcSettingsSection id="updatenotification" :name="t('updatenotification', 'Update')"> <div class="update"> <template v-if="isNewVersionAvailable"> <NcNoteCard v-if="versionIsEol" type="warning"> @@ -60,13 +60,13 @@ </span> <NcActions v-if="whatsNewData || changelogURL" :force-menu="true" - :menu-title="t('updatenotification', 'What\'s new?')" + :menu-name="t('updatenotification', 'What\'s new?')" type="tertiary"> <template #icon> <IconNewBox :size="20" /> </template> <template #default> - <NcActionCaption v-for="changes,index in whatsNewData" :key="index" :title="changes" /> + <NcActionCaption v-for="changes,index in whatsNewData" :key="index" :name="changes" /> <NcActionLink v-if="changelogURL" :href="changelogURL" close-after-click @@ -102,7 +102,7 @@ <div class="update-channel-selector"> <span>{{ t('updatenotification', 'Current update channel:') }}</span> <NcActions :force-menu="true" - :menu-title="localizedChannelName" + :menu-name="localizedChannelName" type="tertiary"> <template #icon> <IconChevronDown :size="20" /> |