diff --git a/web/src/components/Statusbar.tsx b/web/src/components/Statusbar.tsx index 00374ad71..c2e81cf90 100644 --- a/web/src/components/Statusbar.tsx +++ b/web/src/components/Statusbar.tsx @@ -58,18 +58,20 @@ export default function Statusbar() {
{cpuPercent && ( -
- - CPU {cpuPercent}% -
+ +
+ + CPU {cpuPercent}% +
+ )} {Object.entries(stats?.gpu_usages || {}).map(([name, stats]) => { if (name == "error-gpu") { @@ -93,18 +95,24 @@ export default function Statusbar() { const gpu = parseInt(stats.gpu); return ( -
- - {gpuTitle} {gpu}% -
+ + {" "} +
+ + {gpuTitle} {gpu}% +
+ ); })}