fix: rename appVersion to displayVersionLabel to enhance readability

This commit is contained in:
MasterAcnolo
2026-08-15 21:30:32 +02:00
parent c2158d99cd
commit 4de05fcd52

View File

@@ -7,7 +7,7 @@
*
* @returns {Promise<void>}
*/
async function versionLabel() {
async function displayVersionLabel() {
/**
* Raw version string from the backend (e.g., "dev-1.6.2-preview" or "v1.6.2")
* @type {string}
@@ -51,4 +51,4 @@ async function versionLabel() {
versionBadge.textContent = `${packageStateStr}${previewStr}v${baseVersion}`;
}
versionLabel();
displayVersionLabel();