aboutsummaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/src
diff options
context:
space:
mode:
authorEduardo Morales <emoral435@gmail.com>2024-01-12 11:04:48 -0600
committerEduardo Morales <emoral435@gmail.com>2024-01-16 12:32:12 -0600
commita671c517b07219fd2dcb289fb8ac093bf4696608 (patch)
tree65e6387f973fccb63d2bf24129752ec02bc321d8 /apps/updatenotification/src
parentdfb9cd8738fbd7b7e329fd870fa24a96f1ef497f (diff)
downloadnextcloud-server-a671c517b07219fd2dcb289fb8ac093bf4696608.tar.gz
nextcloud-server-a671c517b07219fd2dcb289fb8ac093bf4696608.zip
fix(update-section): changed span to an interactive element
Signed-off-by: Eduardo Morales <emoral435@gmail.com>
Diffstat (limited to 'apps/updatenotification/src')
-rw-r--r--apps/updatenotification/src/components/UpdateNotification.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue
index 3ef1bfcfd0f..c5a31c7b2ba 100644
--- a/apps/updatenotification/src/components/UpdateNotification.vue
+++ b/apps/updatenotification/src/components/UpdateNotification.vue
@@ -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,
})
},