From 118fbe6a71aa29251b5c197dedd8f11a0126f761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Mon, 18 May 2026 18:37:46 +0200 Subject: [PATCH] =?UTF-8?q?agent=20ctx-badge:=20drop=20decimal=20=E2=80=94?= =?UTF-8?q?=201304.2k=20misread=20as=201304.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hive-ag3nt/assets/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive-ag3nt/assets/app.js b/hive-ag3nt/assets/app.js index 82b6c80..7ada71e 100644 --- a/hive-ag3nt/assets/app.js +++ b/hive-ag3nt/assets/app.js @@ -535,7 +535,7 @@ if (!el_) return; if (!u) { el_.hidden = true; return; } const ctx = u.input_tokens + u.cache_read_input_tokens + u.cache_creation_input_tokens; - const fmt = (n) => n >= 1000 ? (n / 1000).toFixed(1) + 'k' : String(n); + const fmt = (n) => n >= 1000 ? Math.round(n / 1000) + 'k' : String(n); el_.hidden = false; el_.title = [ 'context window in use',