fix(project-map): raise inspection modal z-index above map panel

The DaisyUI .modal default z-index (999) was below the phases/layers panel
(z-1000) and its reopen button (z-1001), so they showed on top of the modal.
Set the modal to z-[2000].

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-17 13:02:27 +02:00
parent 238310180f
commit 19fef5aa25
@@ -338,7 +338,7 @@
{{-- Visor de inspección --}} {{-- Visor de inspección --}}
@if($viewingInspection) @if($viewingInspection)
<div class="modal modal-open" wire:key="ins-viewer-{{ $viewingInspection['id'] }}"> <div class="modal modal-open z-[2000]" wire:key="ins-viewer-{{ $viewingInspection['id'] }}">
<div class="modal-box max-w-lg"> <div class="modal-box max-w-lg">
<div class="flex justify-between items-start mb-3"> <div class="flex justify-between items-start mb-3">
<h3 class="font-bold text-lg">{{ __('Inspection') }} #{{ $viewingInspection['id'] }}</h3> <h3 class="font-bold text-lg">{{ __('Inspection') }} #{{ $viewingInspection['id'] }}</h3>