Build 29068622

This commit is contained in:
Renan LE CARO 2025-04-08 15:02:38 +02:00
parent 269f1b8b94
commit 4651bb396c
9 changed files with 35 additions and 30 deletions

View file

@ -32,15 +32,18 @@ export function helpMenuEntry() {
t("main_menu.credit_levels"),
...allLevels
.filter((l) => l.credit?.startsWith("http"))
.filter((l) => l.credit?.trim())
.map(
(l) => `
<div class="upgrade used">
${icons[l.name]}
<div>
<p>
<strong>${l.name}</strong><br/>
<a href="${l.credit}" target="_blank">${l.credit}</a>
<strong>${l.name}</strong>
</p>
${miniMarkDown(l.credit || "")}
</div>
</div>`,
),
],