Skip to content

Commit

Permalink
use element on media type and member type
Browse files Browse the repository at this point in the history
  • Loading branch information
madsrasmussen committed Feb 27, 2025
1 parent 60e22a1 commit da39524
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class UmbMediaTypeWorkspaceEditorElement extends UmbLitElement {

override render() {
return html`
<umb-workspace-editor>
<umb-entity-detail-workspace-editor>
<div id="header" slot="header">
<uui-button id="icon" compact label="icon" look="outline" @click=${this._handleIconClick}>
<umb-icon name=${ifDefined(this._icon)}></umb-icon>
Expand All @@ -107,7 +107,7 @@ export class UmbMediaTypeWorkspaceEditorElement extends UmbLitElement {
@input=${this.#onDescriptionChange}></uui-input>
</div>
</div>
</umb-workspace-editor>
</umb-entity-detail-workspace-editor>
`;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class UmbMemberTypeWorkspaceEditorElement extends UmbLitElement {

override render() {
return html`
<umb-workspace-editor>
<umb-entity-detail-workspace-editor>
<div id="header" slot="header">
<uui-button id="icon" compact label="icon" look="outline" @click=${this._handleIconClick}>
<umb-icon name=${ifDefined(this._icon)}></umb-icon>
Expand All @@ -102,7 +102,7 @@ export class UmbMemberTypeWorkspaceEditorElement extends UmbLitElement {
@input=${this.#onDescriptionChange}></uui-input>
</div>
</div>
</umb-workspace-editor>
</umb-entity-detail-workspace-editor>
`;
}

Expand Down

0 comments on commit da39524

Please sign in to comment.