From 9bb091e8155ea6b2aa265f145ce6e76ccde06837 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 8b45ee6b221..c7466b408ce 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -2391,7 +2391,15 @@ /> - + + {#if !showCommands} + {#each $banners as banner} + {#if !banner.dismissible} + + {/if} + {/each} + {/if} +