Skip to content

Commit

Permalink
fix(directive-use): bad import
Browse files Browse the repository at this point in the history
  • Loading branch information
nlm-pro committed Nov 26, 2018
1 parent f553d1a commit 9be8c13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions steps/directive-use-solution/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import { CardComponent } from './shared/card';
import { AddDialogComponent } from './people/add-dialog/add-dialog.component';
import { FormComponent } from './shared/form';
import { UpdateComponent } from './update/update.component';
import { PeopleService } from 'app/shared/people-service';
import { NaPipe } from 'app/shared/na-pipe';
import { PeopleService } from './shared/people-service';
import { NaPipe } from './shared/na-pipe';

@NgModule({
imports: [
Expand Down
4 changes: 2 additions & 2 deletions steps/directive-use/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import { CardComponent } from './shared/card';
import { AddDialogComponent } from './people/add-dialog/add-dialog.component';
import { FormComponent } from './shared/form';
import { UpdateComponent } from './update/update.component';
import { PeopleService } from 'app/shared/people-service';
import { NaPipe } from 'app/shared/na-pipe';
import { PeopleService } from './shared/people-service';
import { NaPipe } from './shared/na-pipe';

@NgModule({
imports: [
Expand Down

0 comments on commit 9be8c13

Please sign in to comment.