Skip to content

Commit 23a7f8c

Browse files
authored
Merge pull request #42744 from nextcloud/fix/updatenotification/42637/move-title-and-aria-label-to-interactive-element
fix(update-section): changed span to an interactive element
2 parents 07c0a5f + a671c51 commit 23a7f8c

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/updatenotification/src/components/UpdateNotification.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</template>
8686
<template v-else>
8787
{{ t('updatenotification', 'Your version is up to date.') }}
88-
<span :title="lastCheckedOnString" :aria-label="lastCheckedOnString" class="icon-info svg" />
88+
<a :title="lastCheckedOnString" :aria-label="lastCheckedOnString" href="https://nextcloud.com/changelog/" class="icon-info details" target="_blank"></a>
8989
</template>
9090

9191
<template v-if="!isDefaultUpdateServerURL">
@@ -237,7 +237,7 @@ export default {
237237
},
238238
239239
lastCheckedOnString() {
240-
return t('updatenotification', 'Checked on {lastCheckedDate}', {
240+
return t('updatenotification', 'Checked on {lastCheckedDate} - Open changelog', {
241241
lastCheckedDate: this.lastCheckedDate,
242242
})
243243
},

0 commit comments

Comments
 (0)