Feat: Rating score display redesign, Rating choosing redesign, added avg rating on the game page

This commit is contained in:
Moyasee
2025-10-04 20:12:01 +03:00
parent 52d3750acc
commit 1f05dc8f78
6 changed files with 95 additions and 16 deletions

View File

@@ -24,7 +24,7 @@ function decodeHtmlEntities(text: string): string {
function removeHtmlTags(html: string): string {
let result = "";
let inTag = false;
for (const char of html) {
if (char === "<") {
inTag = true;
@@ -34,7 +34,7 @@ function removeHtmlTags(html: string): string {
result += char;
}
}
return result;
}