From 76ee7358690395956cff8f4c4710c65cb0ccedfc Mon Sep 17 00:00:00 2001 From: Eduard Frankford <e.frankford@student.uibk.ac.at> Date: Sun, 29 May 2022 17:14:23 +0200 Subject: [PATCH] fixed deploymentinfo polling --- .../webapp/app/layouts/footer/footer.component.html | 10 ++-------- .../webapp/app/layouts/footer/footer.component.ts | 11 ++++++++--- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/src/main/webapp/app/layouts/footer/footer.component.html b/src/main/webapp/app/layouts/footer/footer.component.html index 92529513d..ef3d5f24e 100644 --- a/src/main/webapp/app/layouts/footer/footer.component.html +++ b/src/main/webapp/app/layouts/footer/footer.component.html @@ -2,14 +2,8 @@ <div class="footer fixed-bottom"> <div class="container"> <div class="row"> - <div - class="position-absolute" - style="right: 0px; padding-right: 10px; font-size: small" - *ngIf="applicationInfoService.getDeploymentInfo().branch" - > - {{ applicationInfoService.getDeploymentInfo().branch }}/{{ applicationInfoService.getDeploymentInfo().commitId }} ({{ - applicationInfoService.getDeploymentInfo().deploymentDate - }}) + <div class="position-absolute" style="right: 0px; padding-right: 10px; font-size: small" *ngIf="deploymentInfo?.branch"> + {{ deploymentInfo?.branch }}/{{ deploymentInfo?.commitId }} ({{ deploymentInfo?.deploymentDate }}) </div> <div class="col-4"> <a href="https://codeability.uibk.ac.at/" title="test" jhiTranslate="global.footer.about">About codeAbility</a> diff --git a/src/main/webapp/app/layouts/footer/footer.component.ts b/src/main/webapp/app/layouts/footer/footer.component.ts index c38de466f..23ddecf0c 100644 --- a/src/main/webapp/app/layouts/footer/footer.component.ts +++ b/src/main/webapp/app/layouts/footer/footer.component.ts @@ -1,10 +1,15 @@ -import { Component } from '@angular/core'; -import { ApplicationInfoService } from 'app/core/application/applicationInfo.service'; +import { Component, OnInit } from '@angular/core'; +import { ApplicationInfoService, DeploymentInfo } from 'app/core/application/applicationInfo.service'; @Component({ selector: 'jhi-footer', templateUrl: './footer.component.html', }) -export class FooterComponent { +export class FooterComponent implements OnInit { + deploymentInfo?: DeploymentInfo; + constructor(public applicationInfoService: ApplicationInfoService) {} + ngOnInit(): void { + this.deploymentInfo = this.applicationInfoService.getDeploymentInfo(); + } } -- GitLab