fixed closing div in the wrong spot

This commit is contained in:
Miodec 2022-06-23 00:13:17 +02:00
parent aad79660af
commit 26a9ff5930

View file

@ -76,5 +76,5 @@ export function getHTMLById(id: number, noText = false): string {
badge.description
}" data-balloon-pos="right" style="${style}">${
badge.icon ? `<i class="fas ${badge.icon}"></i>` : ""
}${noText ? "" : `<div class="text">${badge.name}</div></div>`}`;
}${noText ? "" : `<div class="text">${badge.name}</div>`}</div>`;
}