Refactor modal-input.blade.php and navbar.blade.php to improve code readability and maintainability

This commit is contained in:
Andras Bacsai
2024-04-16 12:41:44 +02:00
parent faa1120e14
commit f871353acc
3 changed files with 4 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
<x-slide-over @startservice.window="slideOverOpen = true" closeWithX fullScreen>
<x-slot:title>Service Startup</x-slot:title>
<x-slot:content>
<livewire:activity-monitor header="Logs" showWaiting />
<livewire:activity-monitor header="Logs" showWaiting fullHeight />
</x-slot:content>
</x-slide-over>
<h1>Configuration</h1>

View File

@@ -3,7 +3,7 @@
<div class="flex gap-2">
<h2>Service Stack</h2>
<x-forms.button type="submit">Save</x-forms.button>
<x-modal-input buttonTitle="Edit Compose File" title="Docker Compose">
<x-modal-input buttonTitle="Edit Compose File" title="Edit Docker Compose" :closeOutside="false">
<livewire:project.service.edit-compose serviceId="{{ $service->id }}" />
</x-modal-input>
</div>