V15: Added uui-box around ungrouped properties during block editing (#18571) (#18572)

This commit is contained in:
Markus Johansson
2025-03-05 08:44:49 +01:00
committed by GitHub
parent b9250c20e9
commit 900938edd0

View File

@@ -78,10 +78,12 @@ export class UmbBlockWorkspaceViewEditTabElement extends UmbLitElement {
override render() {
return html`
${this._hasProperties
? html` <umb-block-workspace-view-edit-properties
.managerName=${this.#managerName}
data-mark="property-group:root"
.containerId=${this._containerId}></umb-block-workspace-view-edit-properties>`
? html`<uui-box>
<umb-block-workspace-view-edit-properties
.managerName=${this.#managerName}
data-mark="property-group:root"
.containerId=${this._containerId}></umb-block-workspace-view-edit-properties>
</uui-box>`
: ''}
${this.hideSingleGroup && this._groups.length === 1
? this.renderGroup(this._groups[0])