Use external_url if exists on Add Repo Command chart details page

Signed-off-by: strainovic <nenad.strainovic@gmail.com>
This commit is contained in:
Nenad Strainovic 2019-09-21 01:01:23 +02:00 committed by strainovic
parent 38a9690f9a
commit 84d7307e28

View File

@ -44,12 +44,16 @@ export class ChartDetailComponent implements OnInit {
ngOnInit(): void {
this.systemInfoService.getSystemInfo()
.subscribe(systemInfo => {
let scheme = 'http://';
this.systemInfo = systemInfo;
if (this.systemInfo.external_url) {
this.repoURL = `${this.systemInfo.external_url}`;
} else {
let scheme = 'http://';
if (this.systemInfo.has_ca_root) {
scheme = 'https://';
}
this.repoURL = `${scheme}${this.systemInfo.registry_url}`;
}
}, error => this.errorHandler.error(error));
this.refresh();
}