From 674b616674b05cad76f6809bb4e368aca0b9421f Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 21 Mar 2024 18:15:33 +0000 Subject: [PATCH] Fixes non dark mode on Livewire's `welcome/navigation.blade.php` (#375) --- src/Console/InstallsBladeStack.php | 1 + src/Console/InstallsLivewireStack.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Console/InstallsBladeStack.php b/src/Console/InstallsBladeStack.php index 17cf4b3f0..cf602d600 100644 --- a/src/Console/InstallsBladeStack.php +++ b/src/Console/InstallsBladeStack.php @@ -41,6 +41,7 @@ protected function installBladeStack() $this->removeDarkClasses((new Finder) ->in(resource_path('views')) ->name('*.blade.php') + ->notPath('livewire/welcome/navigation.blade.php') ->notName('welcome.blade.php') ); } diff --git a/src/Console/InstallsLivewireStack.php b/src/Console/InstallsLivewireStack.php index 10f3e1677..1b4a640b6 100644 --- a/src/Console/InstallsLivewireStack.php +++ b/src/Console/InstallsLivewireStack.php @@ -78,6 +78,7 @@ protected function installLivewireStack($functional = false) $this->removeDarkClasses((new Finder) ->in(resource_path('views')) ->name('*.blade.php') + ->notPath('livewire/welcome/navigation.blade.php') ->notName('welcome.blade.php') ); }