fix(frontend): improve detail view badges, addon texts, and HTML title (#12461)

This commit is contained in:
CanbiZ (MickLesk)
2026-03-02 09:01:48 +01:00
committed by GitHub
parent a0ea2263a6
commit d258ff476f
4 changed files with 29 additions and 22 deletions
+5
View File
@@ -32,6 +32,11 @@ function ScriptContent() {
.flat()
.find(script => script.slug === selectedScript);
setItem(script);
if (script) {
document.title = `${script.name} | Proxmox VE Helper-Scripts`;
}
} else {
document.title = "Proxmox VE Helper-Scripts";
}
}, [selectedScript, links]);