Read the versions.json from the relative path (#4909)

This commit is contained in:
Maurizio Vitale
2019-07-08 16:27:42 +01:00
committed by Eugenio Romano
parent bd24105036
commit 3af702f58e

View File

@@ -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);