[MNT-24028] edit aspects dialog counter bug (#9539)

* [MNT-24028] fix dialog counter bug

* [MNT-24028] update docs

* [MNT-24028] remove fit
This commit is contained in:
Grzegorz Jaśkowski
2024-04-12 09:25:15 +02:00
committed by GitHub
parent 503cdc40b2
commit 29757e4ee4
6 changed files with 28 additions and 13 deletions

View File

@@ -31,6 +31,7 @@ export class AspectListDialogComponent implements OnInit {
description: string;
currentNodeId: string;
overTableMessage: string;
counter = 0;
currentAspectSelection: string[] = [];
@@ -57,7 +58,11 @@ export class AspectListDialogComponent implements OnInit {
}
onValueChanged(aspectList: string[]) {
this.currentAspectSelection = aspectList;
this.currentAspectSelection = aspectList;
}
onUpdateCounter(count: number) {
this.counter = count;
}
close() {