From d146209f886a207d15a796baf1863d1acfa11ebd Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sat, 4 Jul 2026 06:17:45 +0000 Subject: [PATCH] Rename the GGUF compute control to Dtype and simplify the empty-state copy The always-visible description under the select is gone (the hint tooltip keeps the full detail) and the no-model gallery placeholder now reads 'Select a diffusion model to load'. --- studio/frontend/src/features/images/images-page.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/studio/frontend/src/features/images/images-page.tsx b/studio/frontend/src/features/images/images-page.tsx index 1b1d2c366d..418f0e4104 100644 --- a/studio/frontend/src/features/images/images-page.tsx +++ b/studio/frontend/src/features/images/images-page.tsx @@ -1871,8 +1871,7 @@ export function ImagesPage({ active = true }: { active?: boolean }) { to GGUF (or nothing loaded) and otherwise show why it is unavailable. */} {!status?.loaded || status.model_kind === "gguf" ? ( setTransformerQuant(v as typeof transformerQuant)} @@ -1888,7 +1887,7 @@ export function ImagesPage({ active = true }: { active?: boolean }) { ) : (
- GGUF compute + Dtype GGUF models only
@@ -2596,7 +2595,7 @@ export function ImagesPage({ active = true }: { active?: boolean }) {

{status?.loaded ? "Enter a prompt and hit Generate." - : "Select a model quant to load, then generate."} + : "Select a diffusion model to load"}

)}