Skip to content

Commit

Permalink
fix(web): fix not migrated parts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sikora00 committed May 25, 2020
1 parent f348054 commit 863572f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -2081,7 +2081,8 @@
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/server/auth/port/jest.config.js",
"tsConfig": "libs/server/auth/port/tsconfig.spec.json"
"tsConfig": "libs/server/auth/port/tsconfig.spec.json",
"passWithNoTests": true
}
}
}
Expand Down Expand Up @@ -2109,7 +2110,8 @@
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/server/auth/infrastructure-remote-token-crypto/jest.config.js",
"tsConfig": "libs/server/auth/infrastructure-remote-token-crypto/tsconfig.spec.json"
"tsConfig": "libs/server/auth/infrastructure-remote-token-crypto/tsconfig.spec.json",
"passWithNoTests": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, Inject, OnDestroy, OnInit } from '@
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
import { RepositoryFacade } from '@pimp-my-pr/pmp-web/repository/data-access';
import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { TimeUnit } from '@pimp-my-pr/shared/domain';
import { AddEditRepositoryDialogData, Repository } from '@pimp-my-pr/pmp-web/repository/domain';
import { SnackbarService } from '@pimp-my-pr/pmp-web/shared/domain';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Injectable } from '@angular/core';
import { MatSnackBar, MatSnackBarRef, SimpleSnackBar } from '@angular/material';
import { MatSnackBar, MatSnackBarRef, SimpleSnackBar } from '@angular/material/snack-bar';

@Injectable()
export class SnackbarService {
Expand Down

0 comments on commit 863572f

Please sign in to comment.