mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
AAE-23830 Fix chips positioning and filter render logic in process filters (#10015)
* AAE-23830 Fix labels and chips positioning in workspace process filters * AAE-23830 fix tests and add a loop tracker * AAE-23830 @ehsan-2019 comments fixes * AAE-23830 convert readonly detection to if else * AAE-23830 fix failures in process filters * AAE-23830 added condition to avoid enabling formControl when unnecessary * AAE-23830 move the input back to the chip grid
This commit is contained in:
@@ -182,6 +182,12 @@ export class PeopleCloudComponent implements OnInit, OnChanges, OnDestroy {
|
||||
this.invalidUsers = [];
|
||||
}
|
||||
}
|
||||
|
||||
if (this.isReadonly() && this.searchUserCtrl.enabled) {
|
||||
this.searchUserCtrl.disable();
|
||||
} else if (!this.isReadonly() && this.searchUserCtrl.disabled) {
|
||||
this.searchUserCtrl.enable();
|
||||
}
|
||||
}
|
||||
|
||||
private initSearch(): void {
|
||||
|
||||
Reference in New Issue
Block a user