From 0db3bfbfda06676003bacc572db5958cf40ccf7a Mon Sep 17 00:00:00 2001 From: Nilesh <19304+nileshtrivedi@users.noreply.github.com> Date: Tue, 24 May 2022 12:27:23 +0100 Subject: [PATCH] Don't make Misc as link --- src/TopicMasonryGrid.svelte | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/TopicMasonryGrid.svelte b/src/TopicMasonryGrid.svelte index e96550d..a3eb5d3 100644 --- a/src/TopicMasonryGrid.svelte +++ b/src/TopicMasonryGrid.svelte @@ -87,7 +87,11 @@
{#each [...map.entries()] as parent}
- { format_topic_name(parent[0]) } + {#if typeof(parent[0]) == "string"} + { parent[0] } + {:else} + { format_topic_name(parent[0]) } + {/if}
{#each parent[1] as child}