From 7b8c4d217919de48bd80a87237798e3c94da7d39 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 8 Feb 2025 11:16:04 +0200 Subject: [PATCH] fix(client): freeze if empty doc --- src/public/app/widgets/type_widgets/doc.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/public/app/widgets/type_widgets/doc.ts b/src/public/app/widgets/type_widgets/doc.ts index 47e65fc78..2e8b2ab6f 100644 --- a/src/public/app/widgets/type_widgets/doc.ts +++ b/src/public/app/widgets/type_widgets/doc.ts @@ -79,6 +79,7 @@ export default class DocTypeWidget extends TypeWidget { }); } else { this.$content.empty(); + resolve(); } }); }