frontend: update version display format in ConsoleNavComponent
This commit is contained in:
parent
e2f5725fa5
commit
b69277ee04
@ -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>
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user