mirror of
https://github.com/nextcloud/server.git
synced 2026-03-01 21:10:36 -05:00
Merge pull request #42859 from nextcloud/backport/stable28/42744/fix/updatenotification/42637/move-title-and-aria-label-to-interactive-element
[stable28] fix(update-section): changed span to an interactive element
This commit is contained in:
commit
54bed640ca
3 changed files with 5 additions and 5 deletions
|
|
@ -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,
|
||||
})
|
||||
},
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue