remove double box

This commit is contained in:
Mads Rasmussen
2025-01-17 09:29:55 +01:00
parent a9039389f4
commit 4a728d88c2

View File

@@ -156,13 +156,11 @@ export class UmbMediaReferencesWorkspaceInfoAppElement extends UmbLitElement {
override render() {
return html`
<uui-box headline=${this.localize.term('references_labelUsedByItems')}>
${when(
this._loading,
() => html`<uui-loader></uui-loader>`,
() => html`${this.#renderItems()} ${this.#renderPagination()}`,
)}
</uui-box>
${when(
this._loading,
() => html`<uui-loader></uui-loader>`,
() => html`${this.#renderItems()} ${this.#renderPagination()}`,
)}
`;
}