fix(bigmind): fix static image path, JS string concat in achievements; add networker badge PNGs

This commit is contained in:
pplate
2026-04-04 19:01:56 +02:00
parent 50488109aa
commit e61c9c98f5
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -628,7 +628,7 @@ def _render_html(data: dict) -> str:
var d = card.dataset;
var tier = d.id.split('_').pop();
if (d.image) {{
document.getElementById('ap-icon').innerHTML = "<img class=\"ap-image tier-\" + tier + \" src=\" + d.image + \" alt=\" + d.name + \">";
document.getElementById('ap-icon').innerHTML = '<img class="ap-image tier-' + tier + '" src="' + d.image + '" alt="' + d.name + '">';
}} else {{
document.getElementById('ap-icon').textContent = d.icon;
}}