From a2a041f212fb73b55da60cf636797c85c18674d5 Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Tue, 5 Dec 2023 22:24:38 +0000 Subject: [PATCH] fix: reenable showing empty flyouts (#7695) --- core/flyout_base.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/core/flyout_base.ts b/core/flyout_base.ts index 219d69e3e..76d2e8f8c 100644 --- a/core/flyout_base.ts +++ b/core/flyout_base.ts @@ -647,7 +647,6 @@ export abstract class Flyout // Parse the Array, Node or NodeList into a a list of flyout items. const parsedContent = toolbox.convertFlyoutDefToJsonArray(flyoutDef); - if (!parsedContent.length) return; // No need to show an empty flyout. const flyoutInfo = this.createFlyoutInfo(parsedContent); renderManagement.triggerQueuedRenders();