Skip to content

Commit f747e05

Browse files
committed
fix: hide AS400 integration module
Signed-off-by: Manuel Abascal <mjabascal10@gmail.com>
1 parent 405f490 commit f747e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/app/app-module/services/module.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class ModuleService {
8383
m.prettyName = m.prettyName + ' GravityZone';
8484
}
8585
});
86-
return response.body;
86+
return response.body.filter(m => m.moduleName !== this.utmModulesEnum.AS_400);
8787
}),
8888
catchError(error => {
8989
console.error(error);

0 commit comments

Comments
 (0)