fix: display "dev" in app version if the app is not packaged

This commit is contained in:
MasterAcnolo
2026-05-31 21:45:56 +02:00
parent 13ee4c170b
commit b745ebd29f
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ async function versionLabel() {
if (!versionBadge) return;
versionBadge.textContent = `v${appVersion}`;
versionBadge.textContent = `${appVersion}`;
}
versionLabel();