diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index cbf0e20..1a1398d 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -27,7 +27,8 @@ const routes: Routes = [ }, { path: 'researcher', - loadChildren: () => import('./researcher/researcher.module').then(m => m.ResearcherModule) + loadChildren: () => import('./researcher/researcher.module').then(m => m.ResearcherModule), + data: {title: Irish.METADATA_PREFIX} }, { path: 'repository', diff --git a/src/app/researcher/researcher.component.ts b/src/app/researcher/researcher.component.ts index cb9d072..5c3ea48 100644 --- a/src/app/researcher/researcher.component.ts +++ b/src/app/researcher/researcher.component.ts @@ -46,7 +46,7 @@ import {LayoutService} from "../openaireLibrary/dashboard/sharedComponents/sideb {{properties.orcidURL + author.id}} -

Researchers

+

Researcher Monitors

diff --git a/src/app/researcher/search-researcher/search-researcher.component.html b/src/app/researcher/search-researcher/search-researcher.component.html index de4b7e2..d977fba 100644 --- a/src/app/researcher/search-researcher/search-researcher.component.html +++ b/src/app/researcher/search-researcher/search-researcher.component.html @@ -3,7 +3,7 @@ [searchInputClass]="'inner background'" (searchEmitter)="searchByKeyword()" (valueChange)="checkForReset()" class="uk-width-xlarge@l uk-width-large@m"> -
+
--> -
-
+
+
-
+
- - +
+ +
-
- {{author.authorGivenName}} {{author.authorFamilyName}} -
- - {{author.resultsCount}} research outcomes -
- {{author.institutions.join(", ")}} -
+
+
{{author.authorGivenName}} {{author.authorFamilyName}}
+
+
{{author.resultsCount}} research outcomes
+
{{author.institutions.join(", ")}}
+
-
+
-
+ diff --git a/src/app/researcher/search-researcher/search-researcher.module.ts b/src/app/researcher/search-researcher/search-researcher.module.ts index 1e63476..45eb339 100644 --- a/src/app/researcher/search-researcher/search-researcher.module.ts +++ b/src/app/researcher/search-researcher/search-researcher.module.ts @@ -8,6 +8,7 @@ import {SearchOrcidServiceModule} from "../../openaireLibrary/claims/claim-utils import {SearchResearchResultsServiceModule} from "../../openaireLibrary/services/searchResearchResultsService.module"; import {LoadingModule} from "../../openaireLibrary/utils/loading/loading.module"; import {RouterModule} from "@angular/router"; +import {IconsModule} from '../../openaireLibrary/utils/icons/icons.module'; @@ -15,7 +16,7 @@ import {RouterModule} from "@angular/router"; declarations: [SearchResearcherComponent], imports: [ CommonModule, SearchResearcherRoutingModule, SearchInputModule, MatSelectModule, SearchOrcidServiceModule, SearchResearchResultsServiceModule, LoadingModule, - RouterModule + RouterModule, IconsModule ] })