From dc580157c63f94e19678fd01660aebc8fe43f217 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tumanov Date: Thu, 4 Apr 2024 20:40:43 +0500 Subject: [PATCH] Fix overflow in Inbox (#5193) Signed-off-by: Vyacheslav Tumanov --- .../notification/ChatMessageNotificationLabel.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/chunter-resources/src/components/notification/ChatMessageNotificationLabel.svelte b/plugins/chunter-resources/src/components/notification/ChatMessageNotificationLabel.svelte index 20a8d0d7b9..47db6fcb6e 100644 --- a/plugins/chunter-resources/src/components/notification/ChatMessageNotificationLabel.svelte +++ b/plugins/chunter-resources/src/components/notification/ChatMessageNotificationLabel.svelte @@ -84,7 +84,9 @@ {#if icon} {/if} - {title} +
+ {title} +
{/if}