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);
}
}