frontend admin refakctorálás

This commit is contained in:
Roo
2026-07-08 08:03:57 +00:00
parent 07b59032ce
commit 2e0abc62a7
455 changed files with 14428 additions and 21651 deletions

View File

@@ -154,7 +154,7 @@
>
{{ garageDisplayName(garage) }}
</NuxtLink>
<p class="text-xs text-slate-500">{{ garage.city || '—' }} · {{ garage.member_count }} {{ $t('garages.members') }}</p>
<p class="text-xs text-slate-500">{{ garage.address_detail?.city || '—' }} · {{ garage.member_count }} {{ $t('garages.members') }}</p>
</div>
</div>
</td>
@@ -388,6 +388,14 @@ interface Garage {
city: string | null
region: string | null
segment: string | null
address_detail?: {
zip: string | null
city: string | null
street_name: string | null
street_type: string | null
house_number: string | null
full_address_text: string | null
} | null
member_count: number
created_at: string | null
subscription: SubscriptionInfo | null