Skip to content

Commit

Permalink
fix(module: Searchbar): fix no provider for LocaleProviderService (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
sWhite01111 authored and fisherspy committed Dec 5, 2018
1 parent 71ea780 commit 1ac6008
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/search-bar/search-bar.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ import { NgModule } from '@angular/core';
import { SearchBar } from './search-bar.component';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { LocaleProviderModule } from '../locale-provider/locale-provider.module';

@NgModule({
exports: [SearchBar],
declarations: [SearchBar],
imports: [CommonModule, FormsModule]
imports: [CommonModule, FormsModule, LocaleProviderModule],
providers: [LocaleProviderModule]
})
export class SearchBarModule {}

0 comments on commit 1ac6008

Please sign in to comment.