diff options
Diffstat (limited to 'apps/updatenotification/src/components/UpdateNotification.vue')
-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" /> |