mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-5405] Resolved process-filters action buttons disabling/enabling… (#7140)
* [ADF-5405] Resolved process-filters action buttons disabling/enabling issue * Changes done as per comments on PR * Added unit tests * Changes done as per the comments on PR * Fixed the failing e2es * Fixed linting * REsolved build failure * Resolved failing e2e tests * Resolved lint errors
This commit is contained in:
@@ -116,7 +116,10 @@ export class ProcessesCloudDemoComponent implements OnInit, OnDestroy {
|
||||
}
|
||||
|
||||
onFilterChange(filter: ProcessFilterCloudModel) {
|
||||
const queryParams = this.cloudProcessFiltersService.writeQueryParams(filter, this.appName, this.filterId);
|
||||
const queryParams = {
|
||||
...this.cloudProcessFiltersService.writeQueryParams(filter, this.appName, filter.id),
|
||||
filterId: filter.id
|
||||
};
|
||||
this.router.navigate([`/cloud/${this.appName}/processes/`], {queryParams});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user