Replace json response on model pull with only the status message

This commit is contained in:
FirephoenixX02 2025-09-06 16:14:10 +02:00
parent 5132adc8be
commit 82f4783d8a

View file

@ -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) {