From daec7482fa9161a4c469509487ceec6de08db391 Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Mon, 11 Nov 2024 07:30:47 +0700 Subject: [PATCH] UI: Change order of information in stats progress bar (#1764) --- src/ui/React/StatsProgressBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/React/StatsProgressBar.tsx b/src/ui/React/StatsProgressBar.tsx index c28f1d39e..5c743e2ec 100644 --- a/src/ui/React/StatsProgressBar.tsx +++ b/src/ui/React/StatsProgressBar.tsx @@ -30,10 +30,10 @@ export function StatsProgressBar({ const tooltip = ( Progress:  - {formatExp(current)} / {formatExp(max - min)} + {formatExp(current)} ({progress.toFixed(2)}%)
Remaining:  - {formatExp(remaining)} ({progress.toFixed(2)}%) + {formatExp(remaining)} / {formatExp(max - min)}
);