Merge pull request #1607 from umbraco/chore-temp-remove-status-symbol

Chore: Temp removal of document tree item status symbol
This commit is contained in:
Lee Kelleher
2024-04-15 20:46:09 +01:00
committed by GitHub

View File

@@ -51,14 +51,16 @@ export class UmbDocumentTreeItemElement extends UmbTreeItemElementBase<UmbDocume
return this._variant?.name ?? `(${fallbackName})`;
}
// TODO: implement correct status symbol
renderIconContainer() {
return html`
<span id="icon-container" slot="icon">
${this.item?.documentType.icon
? html`
<umb-icon id="icon" slot="icon" name="${this.item.documentType.icon}"></umb-icon>
<!--
// TODO: implement correct status symbol
<span id="status-symbol"></span>
-->
`
: nothing}
</span>