diff --git a/src/aria/tree/tree.ts b/src/aria/tree/tree.ts index 4a558e471e2c..f3fa8232cc95 100644 --- a/src/aria/tree/tree.ts +++ b/src/aria/tree/tree.ts @@ -366,6 +366,7 @@ export class TreeItem extends DeferredContentAware implements OnInit, OnDestr children: computed(() => this._group()?.children() ?? []), hasChildren: computed(() => !!this._group()), element: () => this.element, + searchTerm: () => this.searchTerm() ?? '', }); }