From 3af702f58e32760893f4aac9637c9268859613d1 Mon Sep 17 00:00:00 2001 From: Maurizio Vitale Date: Mon, 8 Jul 2019 16:27:42 +0100 Subject: [PATCH] Read the versions.json from the relative path (#4909) --- lib/core/about/about.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/about/about.component.ts b/lib/core/about/about.component.ts index cd8caa82c8..e70fd64782 100644 --- a/lib/core/about/about.component.ts +++ b/lib/core/about/about.component.ts @@ -156,7 +156,7 @@ export class AboutComponent implements OnInit { }); } - this.http.get('/versions.json?' + new Date()).subscribe((response: any) => { + this.http.get('./versions.json?' + new Date()).subscribe((response: any) => { const alfrescoPackages = Object.keys(response.dependencies).filter((val) => { return new RegExp(this.regexp).test(val);