summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/src
diff options
context:
space:
mode:
authorJonas Sulzer <jonas@violoncello.ch>2018-11-30 10:36:18 +0100
committerJonas Sulzer <jonas@violoncello.ch>2018-12-03 18:22:34 +0100
commitcb4950c0f5c82527706aff9f631f58c79b29f484 (patch)
tree9d967c40d3f2ac57a092b2fb5d038123e5019e67 /apps/updatenotification/src
parente7458a41f26c5a3e6d38e67a3bc31d961946b45d (diff)
downloadnextcloud-server-cb4950c0f5c82527706aff9f631f58c79b29f484.tar.gz
nextcloud-server-cb4950c0f5c82527706aff9f631f58c79b29f484.zip
make a button out of 'What's new' so it's obvious it can be clicked on
for #12694 Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
Diffstat (limited to 'apps/updatenotification/src')
-rw-r--r--apps/updatenotification/src/components/root.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/src/components/root.vue b/apps/updatenotification/src/components/root.vue
index 2ffae336130..84092a740b0 100644
--- a/apps/updatenotification/src/components/root.vue
+++ b/apps/updatenotification/src/components/root.vue
@@ -43,7 +43,7 @@
</p>
<div class="whatsNew" v-if="whatsNew">
<div class="toggleWhatsNew">
- <span v-click-outside="hideMenu" @click="toggleMenu">{{ t('updatenotification', 'What\'s new?') }}</span>
+ <a class="button" v-click-outside="hideMenu" @click="toggleMenu">{{ t('updatenotification', 'What\'s new?') }}</a>
<div class="popovermenu" :class="{ 'menu-center': true, open: openedWhatsNew }">
<popover-menu :menu="whatsNew" />
</div>