From 6ccc6f60fc85e665c8a07a169efbe8d09c9d9e8e Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 31 May 2022 01:09:58 +0200 Subject: Lint, rm unused code --- src/lib/components/topic/topic.svelte | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'src/lib/components/topic') diff --git a/src/lib/components/topic/topic.svelte b/src/lib/components/topic/topic.svelte index 0715857..7fb4101 100644 --- a/src/lib/components/topic/topic.svelte +++ b/src/lib/components/topic/topic.svelte @@ -17,14 +17,21 @@ {#if topic.forum} {$_('topic.category_location')} - + {topic.forum.glyph} {$_(topic.forum.label)} . {/if} - + ({$_('topic.remaining_time', { values: { remaining: $_(remaining.label, { values: { count: remaining.count } }) } })}) @@ -37,13 +44,13 @@ {#each topic.tags as tag} {tag.tag}({tag.count}){' '} + >{' '} {/each} {/if} {#if topic.posts} - {#each topic.posts as post, index} - - {/each} + {#each topic.posts as post, index} + + {/each} {/if} -- cgit