From f7d8cce0560ca73759674e3a0b2728b2286d14c2 Mon Sep 17 00:00:00 2001 From: Ed Geraghty Date: Fri, 3 Jul 2026 14:57:35 +0100 Subject: [PATCH 1/2] Align the tag icon with the node name --- src/lib/cards/node/NodeListCard.svelte | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/lib/cards/node/NodeListCard.svelte b/src/lib/cards/node/NodeListCard.svelte index e5648dc..5fc5e78 100644 --- a/src/lib/cards/node/NodeListCard.svelte +++ b/src/lib/cards/node/NodeListCard.svelte @@ -41,10 +41,12 @@
- {node.givenName} - {#if node.tags.length > 0} - - {/if} + + {node.givenName} + {#if node.tags.length > 0} + + {/if} +
From b90fb3306addf0d6518d1891a46ee3c1ccf1718c Mon Sep 17 00:00:00 2001 From: Ed Geraghty Date: Fri, 3 Jul 2026 15:11:04 +0100 Subject: [PATCH 2/2] Add missing closing parenthesis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤷‍♂️ --- src/lib/parts/NodeTagsIcon.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/parts/NodeTagsIcon.svelte b/src/lib/parts/NodeTagsIcon.svelte index 9be8a30..142d6bf 100644 --- a/src/lib/parts/NodeTagsIcon.svelte +++ b/src/lib/parts/NodeTagsIcon.svelte @@ -18,7 +18,7 @@ state: ({ state }) => { popupOpen = state; }, - }; + }); {#if tags.length > 0}