Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit 78ec2d9

Browse files
committed
UUI version corrections
1 parent 83d944a commit 78ec2d9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/mocks/data/utils/entity/entity-tree.manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class UmbMockEntityTreeManager<T extends { id: string; parent?: { id: str
6262
const destinationItem = this.#db.read(destinationId);
6363
if (!destinationItem) throw new Error(`Destination item with id ${destinationId} not found`);
6464

65-
// TODO: Notice we don't add numbers to the 'copy' name.
65+
// Notice we don't add numbers to the 'copy' name.
6666
const items: Array<any> = [];
6767

6868
ids.forEach((id) => {

src/packages/block/block-list/components/ref-list-block/ref-list-block.element.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,10 @@ export class UmbRefListBlockElement extends UmbLitElement {
4747
}
4848

4949
override render() {
50-
// TODO: apply `slot="name"` to the `umb-ufm-render` element, when UUI supports it. [NL]
5150
return html`
5251
<uui-ref-node standalone href=${this._workspaceEditPath ?? '#'}>
5352
<umb-icon slot="icon" .name=${this.icon}></umb-icon>
54-
<umb-ufm-render inline .markdown=${this.label} .value=${this._content}></umb-ufm-render>
53+
<umb-ufm-render slot="name" inline .markdown=${this.label} .value=${this._content}></umb-ufm-render>
5554
</uui-ref-node>
5655
`;
5756
}

0 commit comments

Comments
 (0)