Skip to content

Commit d0a047b

Browse files
VariableVincePhantasm0009
authored andcommitted
Fix spacing in player team label display (openfrontio#2560)
## Description: Add a space after "Your team:" Before: <img width="237" height="117" alt="image" src="https://github.com/user-attachments/assets/60c0821f-a188-44bc-bcd5-e810a741b297" /> After: <img width="243" height="122" alt="image" src="https://github.com/user-attachments/assets/99b3ff5a-167d-4bae-b8f6-b1b199d4946a" /> ## 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
1 parent df3e5d7 commit d0a047b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/graphics/layers/GameLeftSidebar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export class GameLeftSidebar extends LitElement implements Layer {
9999
>
100100
${translateText("help_modal.ui_your_team")}
101101
<span style="color: ${this.playerColor.toRgbString()}">
102-
${this.getTranslatedPlayerTeamLabel()} &#10687;
102+
&nbsp;${this.getTranslatedPlayerTeamLabel()} &#10687;
103103
</span>
104104
</div>
105105
`

0 commit comments

Comments
 (0)