mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Fix error in PR 10575 (#10576)
This commit is contained in:
@@ -155,7 +155,7 @@ export abstract class BaseEditTaskFilterCloudComponent<T> implements OnInit, OnC
|
|||||||
ngOnChanges(changes: SimpleChanges) {
|
ngOnChanges(changes: SimpleChanges) {
|
||||||
const { id } = changes;
|
const { id } = changes;
|
||||||
if (id && id.currentValue !== id.previousValue) {
|
if (id && id.currentValue !== id.previousValue) {
|
||||||
if (this.taskFilter) {
|
if (this.taskFilter && this.taskFilter['id'] === id.currentValue) {
|
||||||
this.taskFilterProperties = this.createAndFilterProperties();
|
this.taskFilterProperties = this.createAndFilterProperties();
|
||||||
this.taskFilterActions = this.createAndFilterActions();
|
this.taskFilterActions = this.createAndFilterActions();
|
||||||
this.buildForm(this.taskFilterProperties);
|
this.buildForm(this.taskFilterProperties);
|
||||||
|
Reference in New Issue
Block a user