fix(ui): improve subscription labels in dashboard

Change abbreviated subscription plan names (U, P, F) to full words (Ultra, Pro, Free) for better readability.
This commit is contained in:
jgor20
2026-01-11 13:14:51 +00:00
parent 52c3fa5669
commit 58f32ebef9

View File

@@ -76,17 +76,17 @@
<div class="flex items-center gap-1 mt-2 text-[10px] font-mono flex-wrap" x-show="stats.subscription">
<template x-if="stats.subscription?.ultra > 0">
<span class="px-1.5 py-0.5 rounded bg-yellow-500/10 text-yellow-400 border border-yellow-500/30">
<span x-text="stats.subscription.ultra"></span> U
<span x-text="stats.subscription.ultra"></span> Ultra
</span>
</template>
<template x-if="stats.subscription?.pro > 0">
<span class="px-1.5 py-0.5 rounded bg-blue-500/10 text-blue-400 border border-blue-500/30">
<span x-text="stats.subscription.pro"></span> P
<span x-text="stats.subscription.pro"></span> Pro
</span>
</template>
<template x-if="stats.subscription?.free > 0">
<span class="px-1.5 py-0.5 rounded bg-gray-500/10 text-gray-400 border border-gray-500/30">
<span x-text="stats.subscription.free"></span> F
<span x-text="stats.subscription.free"></span> Free
</span>
</template>
</div>