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:
@@ -130,8 +130,8 @@
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Tab Content -->
|
||||
<div class="tab-content">
|
||||
<!-- Tab Content (visibility controlled by Livewire @if, not DaisyUI) -->
|
||||
<div class="mt-2">
|
||||
@if($activeTab === 'edit')
|
||||
@if($selectedFeature)
|
||||
<!-- Feature seleccionado -->
|
||||
|
||||
Reference in New Issue
Block a user