From c9e2f4244d21400613e7da2e37a31b5564df7277 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 22 Mar 2024 14:47:36 +0100 Subject: [PATCH] Fix route names and styling in blade files --- resources/views/components/forms/button.blade.php | 2 +- .../views/components/modal-confirmation.blade.php | 2 +- resources/views/components/navbar.blade.php | 2 +- .../views/components/notification/navbar.blade.php | 12 ++++++------ resources/views/livewire/layout-popups.blade.php | 2 +- resources/views/livewire/project/add-empty.blade.php | 4 ++-- resources/views/livewire/project/index.blade.php | 3 +++ routes/web.php | 6 +++--- 8 files changed, 18 insertions(+), 15 deletions(-) diff --git a/resources/views/components/forms/button.blade.php b/resources/views/components/forms/button.blade.php index f91a53b77..460e5ac26 100644 --- a/resources/views/components/forms/button.blade.php +++ b/resources/views/components/forms/button.blade.php @@ -9,7 +9,7 @@ > {{ $slot }} - @if ($attributes->whereStartsWith('wire:click')->first() && $attributes->get('type') === 'submit') + @if ($attributes->whereStartsWith('wire:click')->first()) @endif diff --git a/resources/views/components/modal-confirmation.blade.php b/resources/views/components/modal-confirmation.blade.php index e4ac66c17..b1b9a5d40 100644 --- a/resources/views/components/modal-confirmation.blade.php +++ b/resources/views/components/modal-confirmation.blade.php @@ -47,7 +47,7 @@ class="relative w-auto h-auto"> @endif @endif