diff options
Diffstat (limited to 'client/src/app/search')
-rw-r--r-- | client/src/app/search/search.component.html | 2 | ||||
-rw-r--r-- | client/src/app/search/search.module.ts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/search/search.component.html b/client/src/app/search/search.component.html index 7fb2d4f7d..bbc70f772 100644 --- a/client/src/app/search/search.component.html +++ b/client/src/app/search/search.component.html | |||
@@ -17,7 +17,7 @@ | |||
17 | </div> | 17 | </div> |
18 | </div> | 18 | </div> |
19 | 19 | ||
20 | <div class="results-filter" [collapse]="isSearchFilterCollapsed"> | 20 | <div class="results-filter" [ngbCollapse]="isSearchFilterCollapsed"> |
21 | <my-search-filters [advancedSearch]="advancedSearch" (filtered)="onFiltered()"></my-search-filters> | 21 | <my-search-filters [advancedSearch]="advancedSearch" (filtered)="onFiltered()"></my-search-filters> |
22 | </div> | 22 | </div> |
23 | </div> | 23 | </div> |
diff --git a/client/src/app/search/search.module.ts b/client/src/app/search/search.module.ts index 488046cf1..5a715fb8e 100644 --- a/client/src/app/search/search.module.ts +++ b/client/src/app/search/search.module.ts | |||
@@ -4,14 +4,14 @@ import { SearchComponent } from '@app/search/search.component' | |||
4 | import { SearchService } from '@app/search/search.service' | 4 | import { SearchService } from '@app/search/search.service' |
5 | import { SearchRoutingModule } from '@app/search/search-routing.module' | 5 | import { SearchRoutingModule } from '@app/search/search-routing.module' |
6 | import { SearchFiltersComponent } from '@app/search/search-filters.component' | 6 | import { SearchFiltersComponent } from '@app/search/search-filters.component' |
7 | import { CollapseModule } from 'ngx-bootstrap/collapse' | 7 | import { NgbCollapseModule } from '@ng-bootstrap/ng-bootstrap' |
8 | 8 | ||
9 | @NgModule({ | 9 | @NgModule({ |
10 | imports: [ | 10 | imports: [ |
11 | SearchRoutingModule, | 11 | SearchRoutingModule, |
12 | SharedModule, | 12 | SharedModule, |
13 | 13 | ||
14 | CollapseModule.forRoot() | 14 | NgbCollapseModule.forRoot() |
15 | ], | 15 | ], |
16 | 16 | ||
17 | declarations: [ | 17 | declarations: [ |