Add version handling

This commit is contained in:
Peter
2023-10-06 12:14:31 +02:00
parent bba6229c2b
commit 10e0894dcf
10 changed files with 95 additions and 22 deletions

View File

@@ -1,8 +1,18 @@
<div class="footer-wrapper" *ngIf="userLoggedIn">
<div class="version-web" *ngIf="versionWeb">
Web: v{{versionWeb}}
<span class="label">
Web:
</span>
<span class="version">
v.{{versionWeb}}
</span>
</div>
<div class="version-api" *ngIf="versionApi">
API: v{{versionApi}}
<span class="label">
API:
</span>
<span class="version">
v.{{versionApi}}
</span>
</div>
</div>