Commit e0b12b75 authored by erio's avatar erio
Browse files

fix(usage): put cost label before value in usage stats card

parent 22680dc6
...@@ -31,11 +31,9 @@ ...@@ -31,11 +31,9 @@
${{ (stats?.total_actual_cost || 0).toFixed(4) }} ${{ (stats?.total_actual_cost || 0).toFixed(4) }}
</p> </p>
<p class="text-xs text-gray-400"> <p class="text-xs text-gray-400">
<span class="text-orange-500">${{ (stats?.total_account_cost || 0).toFixed(4) }}</span> <span class="text-orange-500">{{ t('usage.accountCost') }} ${{ (stats?.total_account_cost || 0).toFixed(4) }}</span>
<span> {{ t('usage.accountCost') }}</span>
<span> · </span> <span> · </span>
<span>${{ (stats?.total_cost || 0).toFixed(4) }}</span> <span>{{ t('usage.standardCost') }} ${{ (stats?.total_cost || 0).toFixed(4) }}</span>
<span> {{ t('usage.standardCost') }}</span>
</p> </p>
</div> </div>
</div> </div>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment