From 90e4dd06778709a9b0a24d8259146affa6d268bb Mon Sep 17 00:00:00 2001
From: Blake Girardet <48109706+Caidora@users.noreply.github.com>
Date: Wed, 10 Jun 2026 13:39:19 +1200
Subject: [PATCH] Fixes malformed flag svg url in playerRow (#4203)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Resolves #4194
## Description:
Fixes the malformed flag svg link when viewing the player row component.
This has been tested by temporarily registering a route to the game-info
modal locally and confirming the flag svg now loads.
Local before
---
Local after
## Please complete the following:
- [x] I have added screenshots for all UI updates
- [x] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [x] I have added relevant tests to the test directory
## Please put your Discord username so you can be contacted if a bug or
regression is found:
Caidora
---
src/client/components/baseComponents/ranking/PlayerRow.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/client/components/baseComponents/ranking/PlayerRow.ts b/src/client/components/baseComponents/ranking/PlayerRow.ts
index 9276defe2..d5ae22364 100644
--- a/src/client/components/baseComponents/ranking/PlayerRow.ts
+++ b/src/client/components/baseComponents/ranking/PlayerRow.ts
@@ -256,7 +256,7 @@ export class PlayerRow extends LitElement {
`;
} else if (this.player.flag) {
return html`
`;
}