diff --git a/explore/src/app/searchPages/find/libSearch.module.ts b/explore/src/app/searchPages/find/libSearch.module.ts index 84fef82a..c56d2be2 100644 --- a/explore/src/app/searchPages/find/libSearch.module.ts +++ b/explore/src/app/searchPages/find/libSearch.module.ts @@ -1,16 +1,10 @@ -//import {MaterialModule} from '@angular/material'; import { NgModule} from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule } from '@angular/forms'; -import { SharedModule } from '../../shared/shared.module'; -import { RouterModule } from '@angular/router'; -import {MainSearchModule} from '../../openaireLibrary/searchPages/find/mainSearch.module'; - import { OpenaireSearchComponent } from './search.component'; import { MainSearchRoutingModule } from './mainSearch-routing.module'; +import {SearchAllModule} from "../../openaireLibrary/searchPages/find/searchAll.module"; @NgModule({ - imports: [ MainSearchRoutingModule, MainSearchModule], + imports: [MainSearchRoutingModule, SearchAllModule], declarations:[OpenaireSearchComponent], exports:[OpenaireSearchComponent] }) diff --git a/explore/src/app/searchPages/find/search.component.ts b/explore/src/app/searchPages/find/search.component.ts index bfa55ace..71f5ff55 100644 --- a/explore/src/app/searchPages/find/search.component.ts +++ b/explore/src/app/searchPages/find/search.component.ts @@ -3,7 +3,7 @@ import {Component, ViewChild, ElementRef} from '@angular/core'; @Component({ selector: 'openaire-search-find', template: ` - + `, })