We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53a4d56 commit 944a8e9Copy full SHA for 944a8e9
airflow-core/src/airflow/ui/src/components/ui/Toaster/Toaster.tsx
@@ -29,7 +29,9 @@ export const Toaster = () => (
29
<Stack flex="1" gap="1" maxWidth="100%">
30
{Boolean(toast.title) ? <Toast.Title>{toast.title}</Toast.Title> : undefined}
31
{Boolean(toast.description) ? (
32
- <Toast.Description>{toast.description}</Toast.Description>
+ <Toast.Description overflowWrap="break-word" wordBreak="break-word">
33
+ {toast.description}
34
+ </Toast.Description>
35
) : undefined}
36
</Stack>
37
{toast.action ? <Toast.ActionTrigger>{toast.action.label}</Toast.ActionTrigger> : undefined}
0 commit comments