From 0d54360a24c1b58c81d574be805402d6361ed18a Mon Sep 17 00:00:00 2001 From: Kazuki Yamada Date: Sun, 8 Jun 2025 17:42:52 +0900 Subject: [PATCH] style(website): Change display order to tokens first in client results - Update TryItResultContent.vue to show tokens before chars - Matches CLI display format: (tokens, chars, %) instead of (chars, tokens, %) - Maintains consistency between CLI and website interfaces --- website/client/components/Home/TryItResultContent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/client/components/Home/TryItResultContent.vue b/website/client/components/Home/TryItResultContent.vue index 7a7993d..8dd4087 100644 --- a/website/client/components/Home/TryItResultContent.vue +++ b/website/client/components/Home/TryItResultContent.vue @@ -199,7 +199,7 @@ onUnmounted(() => {
  • {{ file.path }}
    - {{ file.charCount.toLocaleString() }} chars | {{ file.tokenCount.toLocaleString() }} tokens | {{ ((file.tokenCount / result.metadata.summary.totalTokens) * 100).toFixed(1) }}% + {{ file.tokenCount.toLocaleString() }} tokens | {{ file.charCount.toLocaleString() }} chars | {{ ((file.tokenCount / result.metadata.summary.totalTokens) * 100).toFixed(1) }}%