mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[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:
committed by
GitHub
parent
503cdc40b2
commit
29757e4ee4
@@ -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() {
|
||||
|
Reference in New Issue
Block a user