This is an automated email from the ASF dual-hosted git repository.
SvenO3 pushed a commit to branch
4666-asset-filter-is-not-applied-when-resources-are-grouped
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to
refs/heads/4666-asset-filter-is-not-applied-when-resources-are-grouped by this
push:
new 55fb124815 Fix asset filter for grouped resources
55fb124815 is described below
commit 55fb124815621cb784f987bd6bf44797de14c71c
Author: Sven Oehler <[email protected]>
AuthorDate: Fri Jul 3 13:16:35 2026 +0200
Fix asset filter for grouped resources
---
.../shared-ui/src/lib/components/sp-table/sp-table.component.ts | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/ui/projects/streampipes/shared-ui/src/lib/components/sp-table/sp-table.component.ts
b/ui/projects/streampipes/shared-ui/src/lib/components/sp-table/sp-table.component.ts
index 23e530d5b3..d3a1c068e6 100644
---
a/ui/projects/streampipes/shared-ui/src/lib/components/sp-table/sp-table.component.ts
+++
b/ui/projects/streampipes/shared-ui/src/lib/components/sp-table/sp-table.component.ts
@@ -651,6 +651,9 @@ export class SpTableComponent<T>
}
if (this.viewInitialized) {
+ if (this.viewMode === 'grouped') {
+ this.table.dataSource = this.renderedGroupedRows;
+ }
this.table.renderRows();
}
}