diff --git a/monitor/indicators/indicator-themes.component.ts b/monitor/indicators/indicator-themes.component.ts index 06071c58..b34daf47 100644 --- a/monitor/indicators/indicator-themes.component.ts +++ b/monitor/indicators/indicator-themes.component.ts @@ -14,19 +14,18 @@ import {Subscriber} from "rxjs"; -
+

Indicator Themes.

-
-
+
+
-
-
+
+
Indicator themes that we are covering in the Monitor dashboards.

- Please be aware that this is the current set, which will be enriched as requests and data are coming into the - OpenAIRE Research Graph. We are at your disposal to add more indicator themes that may fit your needs. + This is the current set of indicator themes we cover. We’ll keep enriching it as new requests and data are coming into the OpenAIRE Research Graph. We are at your disposal, should you have any recommendations!

Check out the indicator pages (for funders, @@ -44,7 +43,7 @@ import {Subscriber} from "rxjs"; export class IndicatorThemesComponent implements OnInit, OnDestroy { private subscriptions: any[] = []; public properties = properties; - public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources'}, {name: 'Themes'}]; + public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources - Themes'}]; constructor(private router: Router, private meta: Meta, diff --git a/monitor/indicators/indicators.component.ts b/monitor/indicators/indicators.component.ts index 2433d8c9..40c32e42 100644 --- a/monitor/indicators/indicators.component.ts +++ b/monitor/indicators/indicators.component.ts @@ -44,7 +44,7 @@ export class IndicatorsComponent implements OnInit, OnDestroy { const description = "Monitor | Indicators for " + type.label; const title = "Monitor | Indicators for " + type.label; this.metaTags(title, description); - this.breadcrumbs[2] = {name: type.label}; + this.breadcrumbs[1] = {name: 'Resources - ' + type.label} } } this.breadcrumbs[0].route = '/' + (params['stakeholder']?params['stakeholder']:''); diff --git a/monitor/methodology/see-how-it-works.component.ts b/monitor/methodology/see-how-it-works.component.ts index 44434441..3cb69d56 100644 --- a/monitor/methodology/see-how-it-works.component.ts +++ b/monitor/methodology/see-how-it-works.component.ts @@ -68,7 +68,7 @@ export class SeeHowItWorksComponent implements OnInit, OnDestroy { public tab: 'entities' | 'attributes' = 'entities'; private subscriptions: any[] = []; public openaireEntities = OpenaireEntities; - public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources'}, {name: 'See how it works', keepFormat: true}]; + public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources - See how it works', keepFormat: true}]; constructor(private seoService: SEOService, private meta: Meta, diff --git a/monitor/methodology/terminology.component.ts b/monitor/methodology/terminology.component.ts index 111e30df..0d75987f 100644 --- a/monitor/methodology/terminology.component.ts +++ b/monitor/methodology/terminology.component.ts @@ -459,7 +459,7 @@ export class TerminologyComponent implements OnInit, OnDestroy { public tab: 'entities' | 'attributes' = 'entities'; private subscriptions: any[] = []; public openaireEntities = OpenaireEntities; - public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources'}, {name: 'Terminology and construction', keepFormat: true}]; + public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources - Terminology and construction', keepFormat: true}]; public graph_offset: number = 0; public graph_height: number = 0; @ViewChild("graph_element") graph_element; diff --git a/services/clear-cache.service.ts b/services/clear-cache.service.ts index 227bd213..d925d5a7 100644 --- a/services/clear-cache.service.ts +++ b/services/clear-cache.service.ts @@ -21,7 +21,6 @@ export class ClearCacheService { purgeBrowserCache(message: string = null, pid: string) { if(properties.deleteBrowserCacheUrl) { - let url = properties.deleteBrowserCacheUrl + "/" + pid; this.http.get(url, CustomOptions.registryOptions()).subscribe( res => console.log((message ? message + ": " : "") + "Browser Cache purged!"),