Skip to content

Commit

Permalink
fix(about): fix depot url (#1009)
Browse files Browse the repository at this point in the history
* fix(about): fix depot url

* refactor(about): use config to construct url
  • Loading branch information
PhilippeLafreniere18 authored Mar 24, 2022
1 parent 4be4142 commit c168667
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit c168667

Please sign in to comment.