From ffd377cd39844371373e5bdd92dd3ad5e331a5ff Mon Sep 17 00:00:00 2001 From: javier Date: Wed, 17 Jun 2026 11:57:12 +0200 Subject: [PATCH] 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) --- resources/views/livewire/projects/project-map.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/livewire/projects/project-map.blade.php b/resources/views/livewire/projects/project-map.blade.php index 458c229..109726f 100644 --- a/resources/views/livewire/projects/project-map.blade.php +++ b/resources/views/livewire/projects/project-map.blade.php @@ -130,8 +130,8 @@ - -
+ +
@if($activeTab === 'edit') @if($selectedFeature)