🌍 Fix incorrect variable reference for country flag rendering in dashboard meetups list

This commit is contained in:
HolgerHatGarKeineNode
2025-12-05 22:10:28 +01:00
parent 4d01f21747
commit 5b729dcb51

View File

@@ -161,8 +161,8 @@ class extends Component {
<div class="flex items-center space-x-2"> <div class="flex items-center space-x-2">
<div class="font-medium">{{ $meetup->name }}</div> <div class="font-medium">{{ $meetup->name }}</div>
<img <img
alt="{{ strtolower($event->meetup->city->country->code) }}" alt="{{ strtolower($meetup->city->country->code) }}"
src="{{ asset('vendor/blade-flags/country-'.strtolower($event->meetup->city->country->code).'.svg') }}" src="{{ asset('vendor/blade-flags/country-'.strtolower($meetup->city->country->code).'.svg') }}"
width="24" height="12" width="24" height="12"
/> />
</div> </div>