From e3ff0594650307a9d7840e8d75112780e26cd845 Mon Sep 17 00:00:00 2001 From: gpascal123 Date: Fri, 26 Sep 2025 11:28:39 +0200 Subject: [PATCH] The icon is now fully displayed. --- src/app/shared/utils/util.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/shared/utils/util.ts b/src/app/shared/utils/util.ts index 71a1907bc..bb98b6846 100644 --- a/src/app/shared/utils/util.ts +++ b/src/app/shared/utils/util.ts @@ -127,13 +127,13 @@ export const convertCrackingSpeed = (speed: number): string => { for (const unit of units) { if (hashSpeed < splitter) { - return `${convertToLocale(hashSpeed)} ${unit}`; + return `${convertToLocale(hashSpeed)}\u00A0${unit}`; } hashSpeed /= splitter; } hashSpeed *= splitter; - return `${convertToLocale(hashSpeed)} ${units[-1]}`; + return `${convertToLocale(hashSpeed)}\u00A0${units[-1]}`; }; /**