This is an automated email from the ASF dual-hosted git repository.

SvenO3 pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new caec9b30dc fix(#4666): Asset filter is not applied when resources are 
grouped (#4682)
caec9b30dc is described below

commit caec9b30dc036594268abd8dd77c8b98a46c186e
Author: Sven Oehler <[email protected]>
AuthorDate: Fri Jul 3 14:42:05 2026 +0200

    fix(#4666): Asset filter is not applied when resources are grouped (#4682)
---
 .../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();
         }
     }

Reply via email to