diff --git a/studio/frontend/src/features/settings/tabs/resources-tab.tsx b/studio/frontend/src/features/settings/tabs/resources-tab.tsx
index e5ed0e0fc5..1a6eb5abbb 100644
--- a/studio/frontend/src/features/settings/tabs/resources-tab.tsx
+++ b/studio/frontend/src/features/settings/tabs/resources-tab.tsx
@@ -525,16 +525,19 @@ export function ResourcesTab() {
{/* Ruled between the three readings: run together they are
easy to misread as one number. */}
+ {/* min-w-0 on each reading, or truncate cannot fire: a flex
+ item defaults to min-width:auto and the longest locales
+ would push past the block instead of ellipsizing. */}
-
+
{t("settings.resources.gpu.used", { value: usedText })}
-
+
{t("settings.resources.gpu.free", { value: freeText })}
-
+
{t("settings.resources.gpu.total", {
value: totalText,
})}