From 8f14e2caed3632d5e82e39f55860119722351911 Mon Sep 17 00:00:00 2001 From: Sine Jespersen Date: Fri, 11 Jul 2025 12:27:22 +0200 Subject: [PATCH] 4472: add "pinned" banner to chat to make it useful to sustain information for users --- src/lib/components/chat/Chat.svelte | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index fc663a3e2a5..7cc4a72d5d2 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -2439,7 +2439,15 @@ /> - + + {#if !showCommands} + {#each $banners as banner} + {#if !banner.dismissible} + + {/if} + {/each} + {/if} +