diff options
Diffstat (limited to 'assets/logo/banner.js')
-rw-r--r-- | assets/logo/banner.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/logo/banner.js b/assets/logo/banner.js index 076e8ce..da54b4d 100644 --- a/assets/logo/banner.js +++ b/assets/logo/banner.js @@ -134,7 +134,7 @@ async function refreshBanner(_, french) { <span> ${data['id'] === "unknown" ? (french ? "<b>Espèce : </b> préférez demander" : "<b>Species: </b> best to ask") : ` <span class="member-small-only"><b>${french ? "Espèce :" : "Species:"} </b></span> - ${data['species'].map(species => ` + ${data['species'].filter(i => i && i['name'] !== "_").map(species => ` <img data-bs-toggle="tooltip" title="${species['name']}" style="width:32px;vertical-align: middle;position:relative;top:-5px;" src="${offline ? species['icon_offline'] : `/assets/species/${species['icon']}`}" alt="${species['name']}"> `).join("")}`} </span>` : ''} |