diff --git a/src/ui_ng/lib/src/repository/repository.component.ts b/src/ui_ng/lib/src/repository/repository.component.ts index 730ea5736..510da1645 100644 --- a/src/ui_ng/lib/src/repository/repository.component.ts +++ b/src/ui_ng/lib/src/repository/repository.component.ts @@ -94,14 +94,16 @@ export class RepositoryComponent implements OnInit { retrieve(state?: State) { toPromise(this.repositoryService.getRepositories(this.projectId, this.repoName)) - .then( - response => { - if (response.metadata.xTotalCount > 0) { - this.orgImageInfo = response.data[0].description; - this.imageInfo = response.data[0].description; - } - }) - .catch(error => this.errorHandler.error(error)); + .then( response => { + if (response.metadata.xTotalCount > 0) { + this.orgImageInfo = response.data[0].description; + this.imageInfo = response.data[0].description; + } + }) + .catch(error => this.errorHandler.error(error)); + toPromise(this.systemInfoService.getSystemInfo()) + .then(systemInfo => this.systemInfo = systemInfo) + .catch(error => this.errorHandler.error(error)); } saveSignatures(event: {[key: string]: string[]}): void {