Skip to content

Commit

Permalink
GMS-181 Small changes in code
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-szrnka committed Dec 13, 2024
1 parent e6e84c8 commit 859d48f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import { MatTableDataSource } from "@angular/material/table";
import { ActivatedRoute, Router } from "@angular/router";
import { catchError, Observable } from "rxjs";
import { AngularMaterialModule } from "../../angular-material-module";
import { GmsComponentsModule } from "../../common/components/gms-components-module";
import { NavBackComponent } from "../../common/components/nav-back/nav-back.component";
import { MomentPipe } from "../../common/components/pipes/date-formatter.pipe";
import { TranslatorModule } from "../../common/components/pipes/translator/translator.module";
import { SharedDataService } from "../../common/service/shared-data-service";
import { TranslatorService } from "../../common/service/translator-service";
import { JobDetail } from "./model/job-detail.model";
import { JobDetailService } from "./service/job-detail.service";
import { GmsComponentsModule } from "../../common/components/gms-components-module";
import { TranslatorModule } from "../../common/components/pipes/translator/translator.module";

const MANUAL_JOB_EXECUTION_CONFIG = [
{ label: 'job.button.event.maintenance', url : 'event_maintenance' },
Expand Down
12 changes: 5 additions & 7 deletions code/gms-frontend/src/app/components/secret/secret-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@ import { FormsModule } from "@angular/forms";
import { BrowserModule } from "@angular/platform-browser";
import { AngularMaterialModule } from "../../angular-material-module";
import { AppRoutingModule } from "../../app-routing.module";
import { MomentPipe } from "../../common/components/pipes/date-formatter.pipe";
import { NavBackComponent } from "../../common/components/nav-back/nav-back.component";
import { NavButtonVisibilityPipe } from "../../common/components/pipes/nav-button-visibility.pipe";
import { TranslatorModule } from "../../common/components/pipes/translator/translator.module";
import { SplashComponent } from "../../common/components/splash/splash.component";
import { StatusToggleComponent } from "../../common/components/status-toggle/status-toggle.component";
import { SecretDetailResolver } from "./resolver/secret-detail.resolver";
import { SecretListResolver } from "./resolver/secret-list.resolver";
import { SecretDetailComponent } from "./secret-detail.component";
import { SecretListComponent } from "./secret-list.component";
import { SecretService } from "./service/secret-service";
import { NavBackComponent } from "../../common/components/nav-back/nav-back.component";
import { StatusToggleComponent } from "../../common/components/status-toggle/status-toggle.component";
import { TranslatorModule } from "../../common/components/pipes/translator/translator.module";
import { GmsComponentsModule } from "../../common/components/gms-components-module";
import { MomentPipe } from "../../common/components/pipes/date-formatter.pipe";

/**
* @author Peter Szrnka
Expand All @@ -34,8 +33,7 @@ import { GmsComponentsModule } from "../../common/components/gms-components-modu
MomentPipe,
NavButtonVisibilityPipe,
StatusToggleComponent,
TranslatorModule,
GmsComponentsModule
TranslatorModule
],
providers: [
SecretService, SecretListResolver, SecretDetailResolver,
Expand Down

0 comments on commit 859d48f

Please sign in to comment.