This is an automated email from the ASF dual-hosted git repository.

pierrejeambrun pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-1-test by this push:
     new 944a8e9eac1 [v3-1-test] Fix toast notification description text 
truncation (#59356) (#59369)
944a8e9eac1 is described below

commit 944a8e9eac16016caa0d81fb61bf86f9ba9f5e09
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 12 16:00:38 2025 +0100

    [v3-1-test] Fix toast notification description text truncation (#59356) 
(#59369)
    
    (cherry picked from commit 5fdee096fe86755240c0aa3945bc03852c0f5fd0)
    
    Co-authored-by: Yeonguk Choo <[email protected]>
---
 airflow-core/src/airflow/ui/src/components/ui/Toaster/Toaster.tsx | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/airflow-core/src/airflow/ui/src/components/ui/Toaster/Toaster.tsx 
b/airflow-core/src/airflow/ui/src/components/ui/Toaster/Toaster.tsx
index 4d1f0d6b143..cb0b0ccd221 100644
--- a/airflow-core/src/airflow/ui/src/components/ui/Toaster/Toaster.tsx
+++ b/airflow-core/src/airflow/ui/src/components/ui/Toaster/Toaster.tsx
@@ -29,7 +29,9 @@ export const Toaster = () => (
           <Stack flex="1" gap="1" maxWidth="100%">
             {Boolean(toast.title) ? <Toast.Title>{toast.title}</Toast.Title> : 
undefined}
             {Boolean(toast.description) ? (
-              <Toast.Description>{toast.description}</Toast.Description>
+              <Toast.Description overflowWrap="break-word" 
wordBreak="break-word">
+                {toast.description}
+              </Toast.Description>
             ) : undefined}
           </Stack>
           {toast.action ? 
<Toast.ActionTrigger>{toast.action.label}</Toast.ActionTrigger> : undefined}

Reply via email to