mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-7243] fix process services eslint warnings (#7498)
* fix process services eslint warnings * fix constants * revert type changes
This commit is contained in:
@@ -34,10 +34,8 @@ export class SelectAppsDialogComponent {
|
||||
@Inject(MAT_DIALOG_DATA) public data: any) {
|
||||
|
||||
this.appsProcessService.getDeployedApplications().subscribe(
|
||||
(apps: any[]) => {
|
||||
this.processApps = apps.filter((currentApp) => {
|
||||
return currentApp.id;
|
||||
});
|
||||
(apps) => {
|
||||
this.processApps = apps.filter((currentApp) => currentApp.id);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user