Allow data URL external images

This commit is contained in:
Ruichka 2025-03-08 15:39:33 +03:00
parent f859439fc8
commit 259e1df73e
12 changed files with 32 additions and 32 deletions

View file

@ -73,7 +73,7 @@ function overviewRegiments(state) {
<fill-box data-tip="${s.fullName}" fill="${s.color}" disabled></fill-box>
<input data-tip="${s.fullName}" style="width:6em" value="${s.name}" readonly />
${
r.icon.startsWith("http")
r.icon.startsWith("http") || url.startsWith("data:image")
? `<img src="${r.icon}" data-tip="Regiment's emblem" style="width:1.2em; height:1.2em; vertical-align: middle;">`
: `<span data-tip="Regiment's emblem" style="width:1em">${r.icon}</span>`
}