fix(ui): remove redundant sub-table header in user breakdown

The expanded user breakdown rows already align with the parent table
columns (Requests, Token, Actual, Standard), so the repeated sub-header
wastes vertical space. Remove the <thead> from UserBreakdownSubTable.
This commit is contained in:
erio
2026-03-17 00:49:43 +08:00
parent d557d1a190
commit a120a6bc32

View File

@@ -7,15 +7,6 @@
{{ t('admin.dashboard.noDataAvailable') }}
</div>
<table v-else class="w-full text-xs">
<thead>
<tr class="text-gray-400 dark:text-gray-500">
<th class="py-1 pl-6 text-left">{{ t('admin.dashboard.spendingRankingUser') }}</th>
<th class="py-1 text-right">{{ t('admin.dashboard.requests') }}</th>
<th class="py-1 text-right">{{ t('admin.dashboard.tokens') }}</th>
<th class="py-1 text-right">{{ t('admin.dashboard.actual') }}</th>
<th class="py-1 pr-1 text-right">{{ t('admin.dashboard.standard') }}</th>
</tr>
</thead>
<tbody>
<tr
v-for="user in items"