diff --git a/src/app/myworkflows/sidebar-accordion/github-apps-logs/github-apps-logs.component.ts b/src/app/myworkflows/sidebar-accordion/github-apps-logs/github-apps-logs.component.ts index 95831c2424..f425263fe9 100644 --- a/src/app/myworkflows/sidebar-accordion/github-apps-logs/github-apps-logs.component.ts +++ b/src/app/myworkflows/sidebar-accordion/github-apps-logs/github-apps-logs.component.ts @@ -10,7 +10,6 @@ import { AlertService } from 'app/shared/alert/state/alert.service'; import { LambdaEvent, LambdaEventsService } from 'app/shared/openapi'; import { finalize } from 'rxjs/operators'; import { MapFriendlyValuesPipe } from '../../../search/map-friendly-values.pipe'; -import { DescriptorLanguageService } from '../../../shared/entry/descriptor-language.service'; /** * Based on https://material.angular.io/components/table/examples example with expandable rows diff --git a/src/app/shared/pipe/pipe.module.ts b/src/app/shared/pipe/pipe.module.ts index b5ab142e48..e20d768c21 100644 --- a/src/app/shared/pipe/pipe.module.ts +++ b/src/app/shared/pipe/pipe.module.ts @@ -38,6 +38,6 @@ const DECLARATIONS: any[] = [ imports: [CommonModule], declarations: DECLARATIONS, exports: DECLARATIONS, - providers: [EntryToDisplayNamePipe, PlatformPartnerPipe], + providers: [EntryToDisplayNamePipe, PlatformPartnerPipe, MapFriendlyValuesPipe], }) export class PipeModule {}