Skip to content

Commit

Permalink
fix(update-section): changed span to an interactive element
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Morales <emoral435@gmail.com>
  • Loading branch information
emoral435 committed Jan 17, 2024
1 parent c21df32 commit 90890fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/updatenotification/src/components/UpdateNotification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -237,7 +237,7 @@ export default {
},
lastCheckedOnString() {
return t('updatenotification', 'Checked on {lastCheckedDate}', {
return t('updatenotification', 'Checked on {lastCheckedDate} - Open changelog', {
lastCheckedDate: this.lastCheckedDate,
})
},
Expand Down

0 comments on commit 90890fd

Please sign in to comment.