0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-18 02:03:18 +00:00

Merge pull request from nextcloud/fix/updatenotification/42637/move-title-and-aria-label-to-interactive-element

fix(update-section): changed span to an interactive element
This commit is contained in:
Pytal 2024-01-16 13:11:59 -08:00 committed by GitHub
commit 23a7f8ce3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@
</template>
<template v-else>
{{ t('updatenotification', 'Your version is up to date.') }}
<span :title="lastCheckedOnString" :aria-label="lastCheckedOnString" class="icon-info svg" />
<a :title="lastCheckedOnString" :aria-label="lastCheckedOnString" href="https://nextcloud.com/changelog/" class="icon-info details" target="_blank"></a>
</template>
<template v-if="!isDefaultUpdateServerURL">
@ -237,7 +237,7 @@ export default {
},
lastCheckedOnString() {
return t('updatenotification', 'Checked on {lastCheckedDate}', {
return t('updatenotification', 'Checked on {lastCheckedDate} - Open changelog', {
lastCheckedDate: this.lastCheckedDate,
})
},

Binary file not shown.

Binary file not shown.