From c168667e0ddb8bec339d4ad85aa7f627a9b66119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Lafreni=C3=A8re?= <53181414+PhilippeLafreniere18@users.noreply.github.com> Date: Thu, 24 Mar 2022 09:57:57 -0400 Subject: [PATCH] fix(about): fix depot url (#1009) * fix(about): fix depot url * refactor(about): use config to construct url --- .../src/lib/about/about-tool/about-tool.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/integration/src/lib/about/about-tool/about-tool.component.ts b/packages/integration/src/lib/about/about-tool/about-tool.component.ts index 0f160b781c..72ca427bec 100644 --- a/packages/integration/src/lib/about/about-tool/about-tool.component.ts +++ b/packages/integration/src/lib/about/about-tool/about-tool.component.ts @@ -63,8 +63,8 @@ export class AboutToolComponent implements OnInit { private cdRef: ChangeDetectorRef, private languageService: LanguageService) { this.version = configService.getConfig('version'); - this.baseUrlProfil = configService.getConfig('context.url') + '/user/igo?'; - this.baseUrlGuide = configService.getConfig('depot.url') + '/projects/Documentation/files/'; + this.baseUrlProfil = configService.getConfig('storage.url'); + this.baseUrlGuide = configService.getConfig('depot.url') + configService.getConfig('depot.guideUrl'); } ngOnInit() {