From e4232269f62c88d58afe8df79e5982da6fb329b4 Mon Sep 17 00:00:00 2001 From: Yuri Karamian Date: Fri, 19 Jun 2026 14:29:00 +0200 Subject: [PATCH] Fix table styling not detected for HTML serialization --- src/lib/components/Editor.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Editor.svelte b/src/lib/components/Editor.svelte index f118f30..c63b5f2 100644 --- a/src/lib/components/Editor.svelte +++ b/src/lib/components/Editor.svelte @@ -2790,7 +2790,7 @@ if (child.attrs.colspan && child.attrs.colspan > 1) hasStyling = true; if (child.attrs.rowspan && child.attrs.rowspan > 1) hasStyling = true; } - return false; + return true; }); if (hasStyling) { const tempDiv = document.createElement('div');