Add header in notification view

Signed-off-by: Louis Chemineau <louis@chmn.me>
pull/1729/head
Louis Chemineau 2023-04-11 18:47:28 +02:00
rodzic 4f999e02dd
commit a9eb6a94f8
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -25,10 +25,17 @@
</div>
</div>
</transition>
<Composer v-if="type !== 'notifications' && type !== 'single-post'" :default-visibility="type === 'direct' ? 'direct' : undefined" />
<h2 v-if="type === 'tags'">
#{{ $route.params.tag }}
</h2>
<h2 v-if="type === 'notifications'">
{{ t('social', 'Notifications') }}
</h2>
<TimelineList :type="type" />
</div>
</template>