diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/search/search.component.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/client/src/app/shared/search/search.component.ts b/client/src/app/shared/search/search.component.ts index 853f5dc7c..7878471dc 100644 --- a/client/src/app/shared/search/search.component.ts +++ b/client/src/app/shared/search/search.component.ts | |||
@@ -1,16 +1,13 @@ | |||
1 | import { Component, OnInit } from '@angular/core'; | 1 | import { Component, OnInit } from '@angular/core'; |
2 | import { Router } from '@angular/router'; | 2 | import { Router } from '@angular/router'; |
3 | 3 | ||
4 | import { DROPDOWN_DIRECTIVES} from 'ng2-bootstrap/components/dropdown'; | ||
5 | |||
6 | import { Search } from './search.model'; | 4 | import { Search } from './search.model'; |
7 | import { SearchField } from './search-field.type'; | 5 | import { SearchField } from './search-field.type'; |
8 | import { SearchService } from './search.service'; | 6 | import { SearchService } from './search.service'; |
9 | 7 | ||
10 | @Component({ | 8 | @Component({ |
11 | selector: 'my-search', | 9 | selector: 'my-search', |
12 | template: require('./search.component.html'), | 10 | template: require('./search.component.html') |
13 | directives: [ DROPDOWN_DIRECTIVES ] | ||
14 | }) | 11 | }) |
15 | 12 | ||
16 | export class SearchComponent implements OnInit { | 13 | export class SearchComponent implements OnInit { |