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 765d7bf524 Fix for missing pre-used labels in label selection (#3969)
765d7bf524 is described below
commit 765d7bf52484126d40df39dc7e8c58f4c77b486d
Author: Jacqueline Höllig <[email protected]>
AuthorDate: Wed Nov 26 11:19:10 2025 +0100
Fix for missing pre-used labels in label selection (#3969)
---
.../asset-details-labels/asset-details-labels.component.ts | 1 +
1 file changed, 1 insertion(+)
diff --git
a/ui/src/app/assets/components/asset-details/edit-asset/asset-details-panel/asset-details-basics/asset-details-labels/asset-details-labels.component.ts
b/ui/src/app/assets/components/asset-details/edit-asset/asset-details-panel/asset-details-basics/asset-details-labels/asset-details-labels.component.ts
index bd4e254616..cc011338df 100644
---
a/ui/src/app/assets/components/asset-details/edit-asset/asset-details-panel/asset-details-basics/asset-details-labels/asset-details-labels.component.ts
+++
b/ui/src/app/assets/components/asset-details/edit-asset/asset-details-panel/asset-details-basics/asset-details-labels/asset-details-labels.component.ts
@@ -104,6 +104,7 @@ export class AssetDetailsLabelsComponent implements OnInit,
OnChanges {
ngOnChanges(changes: SimpleChanges) {
if (changes['asset']) {
this.refreshCurrentLabels();
+ this.updateFilteredLabels();
}
}