Fixing Empty groups appear in block grid editor Add content UI

This commit is contained in:
Mathias Helsengren
2025-01-16 16:06:46 +01:00
parent e00290f400
commit 42997ee93c

View File

@@ -157,7 +157,7 @@ export class UmbBlockCatalogueModalElement extends UmbModalBaseElement<
: nothing}
${this._filtered.map(
(group) => html`
${group.name && group.name !== '' ? html`<h4>${group.name}</h4>` : nothing}
${group.name && group.blocks.length !== 0 && group.name !== '' ? html`<h4>${group.name}</h4>` : nothing}
<div class="blockGroup">
${repeat(
group.blocks,