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

riemer 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 363157d829 fix: Use elementId in asset export
363157d829 is described below

commit 363157d829cefb867cb15a8e089bfcb7c94cf840
Author: Dominik Riemer <[email protected]>
AuthorDate: Wed Nov 26 17:43:24 2025 +0100

    fix: Use elementId in asset export
---
 ui/src/app/configuration/export/data-export-import.component.html | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ui/src/app/configuration/export/data-export-import.component.html 
b/ui/src/app/configuration/export/data-export-import.component.html
index 8473f8fe33..a948d91a60 100644
--- a/ui/src/app/configuration/export/data-export-import.component.html
+++ b/ui/src/app/configuration/export/data-export-import.component.html
@@ -27,7 +27,9 @@
             >
                 <div fxLayout="column" *ngFor="let asset of assets">
                     <mat-checkbox
-                        (change)="handleSelectionChange($event, asset._id)"
+                        (change)="
+                            handleSelectionChange($event, asset.elementId)
+                        "
                         ><h4>{{ asset.assetName }}</h4></mat-checkbox
                     >
                 </div>

Reply via email to