summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Treffler <mail@jonathan-treffler.de>2020-08-18 21:30:36 +0200
committerJonathan Treffler <mail@jonathan-treffler.de>2020-08-18 21:30:36 +0200
commit37adbe84af1334d43366020f67c7c492c06db4ae (patch)
tree3b8512721063c1864b8ae25314c60b67eaa7a0a6
parentc8e30859e5d5f3fb59adf19911a63ea7b9a4b867 (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>