fix(project-map): tab content hidden by DaisyUI .tab-content (display:none)

The tab panel wrapper used class 'tab-content', which DaisyUI hides by
default (display:none) unless paired with a checked radio .tab sibling.
Since visibility is driven by Livewire @if($activeTab===...), the class
only kept the content permanently hidden. Replaced with a neutral wrapper.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-17 11:57:12 +02:00
parent 24976e28da
commit ffd377cd39
@@ -130,8 +130,8 @@
</a> </a>
</div> </div>
<!-- Tab Content --> <!-- Tab Content (visibility controlled by Livewire @if, not DaisyUI) -->
<div class="tab-content"> <div class="mt-2">
@if($activeTab === 'edit') @if($activeTab === 'edit')
@if($selectedFeature) @if($selectedFeature)
<!-- Feature seleccionado --> <!-- Feature seleccionado -->