Skip to content

Commit ed8f09b

Browse files
garthvhclaude
andcommitted
dashboard: mark the fallback model '(default)' instead of 'default->'
'default->14b' read like a mapping from a tier named 'default'; a trailing '14b (default)' clearly labels it as the fallback for unmapped tiers. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent aa7a7d5 commit ed8f09b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dashboard.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,10 +323,10 @@ <h3>Response <button class="copy" data-copy="d-resp">copy</button></h3>
323323
} else if (keys.length) {
324324
$("routing-chip").firstChild.textContent = "routing ";
325325
$("model").textContent =
326-
keys.map((k) => `${tier(k)}${map[k]}`).join(" · ") + ` · default→${dm}`;
326+
keys.map((k) => `${tier(k)}${map[k]}`).join(" · ") + ` · ${dm} (default)`;
327327
} else {
328328
$("routing-chip").firstChild.textContent = "model ";
329-
$("model").textContent = dm;
329+
$("model").textContent = `${dm} (default)`;
330330
}
331331
render();
332332
} else if (msg.type === "update") {

0 commit comments

Comments
 (0)