From ec0bf079efb76d9a239200ddd21b6db91801c03f Mon Sep 17 00:00:00 2001
From: VariableVince <24507472+VariableVince@users.noreply.github.com>
Date: Thu, 4 Dec 2025 01:37:17 +0100
Subject: [PATCH] Fix spacing in player team label display (#2560)
## Description:
Add a space after "Your team:"
Before:
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
- [x] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced
## Please put your Discord username so you can be contacted if a bug or
regression is found:
tryout33
---
src/client/graphics/layers/GameLeftSidebar.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/client/graphics/layers/GameLeftSidebar.ts b/src/client/graphics/layers/GameLeftSidebar.ts
index dd9b00e98..83c3595f3 100644
--- a/src/client/graphics/layers/GameLeftSidebar.ts
+++ b/src/client/graphics/layers/GameLeftSidebar.ts
@@ -99,7 +99,7 @@ export class GameLeftSidebar extends LitElement implements Layer {
>
${translateText("help_modal.ui_your_team")}
- ${this.getTranslatedPlayerTeamLabel()} ⦿
+ ${this.getTranslatedPlayerTeamLabel()} ⦿
`