Skip to content

Commit

Permalink
Fixes non dark mode on Livewire's welcome/navigation.blade.php (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro authored Mar 21, 2024
1 parent 92b949a commit 674b616
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Console/InstallsBladeStack.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
);
}
Expand Down
1 change: 1 addition & 0 deletions src/Console/InstallsLivewireStack.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
);
}
Expand Down

0 comments on commit 674b616

Please sign in to comment.