Fix: Small coms in AppVersion.js

This commit is contained in:
MasterAcnolo
2026-02-17 21:12:01 +01:00
parent ee685695de
commit f8e346b3cb

View File

@@ -1,5 +1,7 @@
async function versionLabel(){ async function versionLabel(){
const appVersion = await window.electronAPI.getVersion(); const appVersion = await window.electronAPI.getVersion();
// Write in front the app version for debugging (bottom right)
document.getElementById("version-badge").textContent = `v${appVersion}`; document.getElementById("version-badge").textContent = `v${appVersion}`;
}; };