Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-to authored and github-actions[bot] committed Oct 2, 2024
1 parent 67f913f commit eb290c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Laravel/config/moonshine.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
'title' => env('MOONSHINE_TITLE', 'MoonShine'),
'domain' => env('MOONSHINE_DOMAIN'),
'prefix' => env('MOONSHINE_ROUTE_PREFIX', 'admin'),
'page_prefix' =>env('MOONSHINE_PAGE_PREFIX', 'page'),
'page_prefix' => env('MOONSHINE_PAGE_PREFIX', 'page'),

'middleware' => [
EncryptCookies::class,
Expand Down
4 changes: 2 additions & 2 deletions src/UI/src/Traits/HasAsync.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public function isAsync(): bool
public function whenAsync(Closure $callback): static
{
return $this->when(
fn() => $this->getCore()->getRequest()->get('_component_name') === $this->getName(),
fn() => $callback($this)
fn () => $this->getCore()->getRequest()->get('_component_name') === $this->getName(),
fn () => $callback($this)
);
}

Expand Down

0 comments on commit eb290c5

Please sign in to comment.