Skip to content

Commit

Permalink
Up app version
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiahub committed Sep 7, 2023
1 parent 6fe13c0 commit a61a34a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/app/apps/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ <h1 class="page-title">
{{ 'applications.details.title' | translate }} <strong>{{ app.name }}</strong
>&nbsp;
<span class="{{ app.labelTypeClass() }}">{{ app.type }}</span>
<span *ngIf="defaultApp" class="label">{{ defaultApp.version }}</span>
<span *ngIf="defaultApp" class="label">{{ detailedApp.version ?? defaultApp.version }}</span>
</span>
</h1>

Expand Down Expand Up @@ -65,14 +65,14 @@ <h1 class="page-title">
<div class="row">
<div class="key">{{ 'applications.main.version' | translate }}</div>
<div class="value">
<span *ngIf="defaultApp" class="label">{{ defaultApp.version }}</span>
<span *ngIf="defaultApp" class="label">{{ detailedApp.version }}</span>
</div>
</div>
<div class="row">
<div class="key">{{ 'applications.main.bootVersion' | translate }}</div>
<div class="value">
<span *ngIf="defaultApp" class="label">{{
'applications.main.bootVersions.' + defaultApp.bootVersion | translate
'applications.main.bootVersions.' + detailedApp.bootVersion | translate
}}</span>
</div>
</div>
Expand Down

0 comments on commit a61a34a

Please sign in to comment.