CONTRACTS: Fix nbsp rendering as text rather than a space (#2225)

This commit is contained in:
gmcew
2025-07-06 18:10:36 +01:00
committed by GitHub
parent fe13c3e2ca
commit f2e7babcf3
8 changed files with 64 additions and 69 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ export class CodingContract {
}
getDescription(): string {
return CodingContractTypes[this.type].desc(this.getData()).replaceAll(" ", " ");
return CodingContractTypes[this.type].desc(this.getData());
}
getDifficulty(): number {