From d2920e5ab44a45f2fc0b1ffa7211edd5ae57731f Mon Sep 17 00:00:00 2001 From: jaakko Date: Thu, 2 Apr 2026 11:40:38 +0300 Subject: [PATCH] koodilabran v0.1.1 --- network-poc/static/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/network-poc/static/index.html b/network-poc/static/index.html index 09fe339..2ca495e 100644 --- a/network-poc/static/index.html +++ b/network-poc/static/index.html @@ -1115,6 +1115,8 @@ codeLoading.style.display = 'none'; codeSendBtn.disabled = false; codeSendBtn.textContent = 'Generate'; + document.getElementById('coder-status').textContent = 'Connected'; + document.getElementById('coder-status').style.color = '#d29922'; const card = document.createElement('div'); card.className = 'code-task-card'; @@ -1244,6 +1246,8 @@ await ensureCoderNode(); } else { codeLoading.textContent = 'Generating code...'; + document.getElementById('coder-status').textContent = 'Computing'; + document.getElementById('coder-status').style.color = 'var(--success-color)'; sendCodeToHub(text); } }