From e0bd40c485bc017e46ccccfd3153c28341558d9e Mon Sep 17 00:00:00 2001 From: argirok Date: Wed, 27 Mar 2024 09:29:59 +0200 Subject: [PATCH] [pluginsFunctionality | DONE | ADDED] read parameter and save property forceCacheReload --- src/app/app.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index bbbf31b..d43724e 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -189,6 +189,7 @@ export class AppComponent implements OnInit, OnDestroy { ngOnInit() { this.subscriptions.push(this.route.queryParams.subscribe(data => { this.previewLayout = (data['previewLayout'] && data['previewLayout'].length > 0 ? data['previewLayout'] : null); + this.properties.forceCacheReload = (data['forceCacheReload'] ? true : false); if (this.properties.environment == "production" || this.properties.environment == "development") { this._meta.updateTag({content: 'all', name: 'robots'}); this.seoService.removeLinkForPrevURL();