frontend: update version display format in ConsoleNavComponent

This commit is contained in:
juancarmore 2025-07-21 12:00:33 +02:00
parent e2f5725fa5
commit b69277ee04
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@
@if (!isSideMenuCollapsed) {
<div class="separator" id="nav-separator"></div>
<div class="version" id="version-info">
<p>v{{ version }}</p>
<p>{{ version }}</p>
</div>
}
</mat-sidenav>

View File

@ -42,7 +42,7 @@ export class ConsoleNavComponent {
private appDataService: AppDataService,
private themeService: ThemeService
) {
this.version = `${this.appDataService.getVersion()} (${this.appDataService.getEdition()})`;
this.version = `v${this.appDataService.getVersion()} (${this.appDataService.getEdition()})`;
this.isDarkMode = this.themeService.isDark;
}