From c9a5ca3ed79da283732c6123395ecc908ce5ba2d Mon Sep 17 00:00:00 2001 From: Ilia Denisov Date: Fri, 19 Jun 2026 21:56:05 +0200 Subject: [PATCH] fix(lobby): keep the spaces around the score separator Svelte trims leading/trailing whitespace inside an element, so the literal ` : ` rendered as a bare ":" ("123:123"). Emit the separator as a string expression `{' : '}`, which Svelte preserves, restoring "123 : 123". --- ui/src/screens/Lobby.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/screens/Lobby.svelte b/ui/src/screens/Lobby.svelte index 0beff5c..28fb22f 100644 --- a/ui/src/screens/Lobby.svelte +++ b/ui/src/screens/Lobby.svelte @@ -267,7 +267,7 @@ {#if badge}{/if} {#each orderedSeats(g) as s, i (s.seat)}{#if i > 0} : {#each orderedSeats(g) as s, i (s.seat)}{#if i > 0}{' : '}{/if}