summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Treffler <mail@jonathan-treffler.de>2020-08-18 21:30:36 +0200
committerSimon Spannagel <simonspa@kth.se>2021-12-16 20:22:59 +0100
commit75e9caf82f0ca9568ad3736fce19e22f0c11bf2e (patch)
tree6f4b3bf857933df9a95fedacb3fabbccf4e1a93e
parentca923fbb531257dc5a32e8c51462f05d7cec47fb (diff)
made the counter highlighted; added the newItem property to the new Folder Item that gets implemented by #1277
Signed-off-by: Jonathan Treffler <mail@jonathan-treffler.de>
-rw-r--r--src/components/Sidebar.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Sidebar.vue b/src/components/Sidebar.vue
index 059c4f03e..7baf378de 100644
--- a/src/components/Sidebar.vue
+++ b/src/components/Sidebar.vue
@@ -6,11 +6,11 @@
button-class="icon-add" />
<ul id="locations" class="with-icon">
<AppNavigationItem :title="t('news','Unread articles')" icon="icon-rss">
- <AppNavigationCounter slot="counter">
+ <AppNavigationCounter slot="counter" :highlighted="true">
5
</AppNavigationCounter>
</AppNavigationItem>
- <AppNavigationItem :title="t('news','New folder')" icon="icon-add" />
+ <AppNavigationItem :title="t('news','New folder')" icon="icon-add" :new-item="true" />
</ul>
</AppNavigation>
</template>