From 82f4783d8a2594631ee898754db69b90b47613c9 Mon Sep 17 00:00:00 2001 From: FirephoenixX02 Date: Sat, 6 Sep 2025 16:14:10 +0200 Subject: [PATCH] Replace json response on model pull with only the status message --- static/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/static/index.html b/static/index.html index f2908ff..1a0a91e 100644 --- a/static/index.html +++ b/static/index.html @@ -474,8 +474,7 @@ if (!resp.ok) throw new Error(`Status ${resp.status}`); const data = await resp.json(); - console.log(data); - statusEl.textContent = `✅ ${JSON.stringify(data, null, 2)}`; + statusEl.textContent = `✅ ${data.status}`; statusEl.style.color = "green"; loadTags(); } catch (err) {