Merge branch 'feature/entity-actions' of https://github.com/umbraco/Umbraco.CMS.Backoffice into feature/entity-actions

This commit is contained in:
Mads Rasmussen
2023-02-06 16:31:14 +01:00

View File

@@ -30,7 +30,8 @@ export class UmbTreeContextBase implements UmbTreeContext {
this.tree = tree;
if (this.tree.meta.repository) {
this.repository = new this.tree.meta.repository(this.#host) as UmbTreeRepository;
// TODO: should be using the right extension and the createExtensionClass method.
this.repository = new this.tree.meta.repository(this.#host) as any;
}
}