From 50671b98eebeacb27fed3179cba58a739ae6c981 Mon Sep 17 00:00:00 2001 From: dab246 Date: Thu, 27 Nov 2025 15:13:06 +0700 Subject: [PATCH] fix(mu): avoid unwanted word-break in table elements (cherry picked from commit b9cd9933a43c75670eb960d931ee4ea39400284a) --- core/lib/utils/html/html_utils.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/lib/utils/html/html_utils.dart b/core/lib/utils/html/html_utils.dart index f8387f67f..0fe3597e7 100644 --- a/core/lib/utils/html/html_utils.dart +++ b/core/lib/utils/html/html_utils.dart @@ -325,6 +325,10 @@ class HtmlUtils { } } + table, td, th { + word-break: normal !important; + } + ${styleCSS ?? ''}