Skip to content

Commit 900938e

Browse files
authored
V15: Added uui-box around ungrouped properties during block editing (#18571) (#18572)
1 parent b9250c2 commit 900938e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Umbraco.Web.UI.Client/src/packages/block/block/workspace/views/edit/block-workspace-view-edit-tab.element.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,12 @@ export class UmbBlockWorkspaceViewEditTabElement extends UmbLitElement {
7878
override render() {
7979
return html`
8080
${this._hasProperties
81-
? html` <umb-block-workspace-view-edit-properties
82-
.managerName=${this.#managerName}
83-
data-mark="property-group:root"
84-
.containerId=${this._containerId}></umb-block-workspace-view-edit-properties>`
81+
? html`<uui-box>
82+
<umb-block-workspace-view-edit-properties
83+
.managerName=${this.#managerName}
84+
data-mark="property-group:root"
85+
.containerId=${this._containerId}></umb-block-workspace-view-edit-properties>
86+
</uui-box>`
8587
: ''}
8688
${this.hideSingleGroup && this._groups.length === 1
8789
? this.renderGroup(this._groups[0])

0 commit comments

Comments
 (0)