mirror of
https://github.com/yamadashy/repomix.git
synced 2025-06-11 00:25:54 +03:00
style: Reorder summary display to show tokens before chars
- CLI: Change order from 'Total Chars, Total Tokens' to 'Total Tokens, Total Chars' - Website: Change order from 'Total Size, Total Tokens' to 'Total Tokens, Total Size' - Maintains consistency across interfaces by prioritizing token metrics
This commit is contained in:
@@ -186,10 +186,10 @@ onUnmounted(() => {
|
||||
<dl v-if="result.metadata.summary">
|
||||
<dt>Total Files</dt>
|
||||
<dd>{{ result.metadata.summary.totalFiles.toLocaleString() }} <span class="unit">files</span></dd>
|
||||
<dt>Total Size</dt>
|
||||
<dd>{{ result.metadata.summary.totalCharacters.toLocaleString() }} <span class="unit">chars</span></dd>
|
||||
<dt>Total Tokens</dt>
|
||||
<dd>{{ result.metadata.summary.totalTokens.toLocaleString() }} <span class="unit">tokens</span></dd>
|
||||
<dt>Total Size</dt>
|
||||
<dd>{{ result.metadata.summary.totalCharacters.toLocaleString() }} <span class="unit">chars</span></dd>
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user