Skip to content

Commit

Permalink
Add color validation docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Sep 27, 2024
1 parent 8d28c97 commit 8d0f0e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/theme.css

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
if (
[
...(@js($this instanceof \Filament\Actions\Contracts\HasActions) ? $wire.mountedActions ?? [] : []),
...(@js($this instanceof \Filament\Actions\Contracts\HasActions) ? ($wire.mountedActions ?? []) : []),
...(@js($this instanceof \Filament\Forms\Contracts\HasForms)
? $wire.mountedFormComponentActions ?? []
? ($wire.mountedFormComponentActions ?? [])
: []),
...(@js($this instanceof \Filament\Infolists\Contracts\HasInfolists)
? ($wire.mountedInfolistActions ?? [])
: []),
...(@js($this instanceof \Filament\Infolists\Contracts\HasInfolists) ? $wire.mountedInfolistActions ?? [] : []),
...(@js($this instanceof \Filament\Tables\Contracts\HasTable)
? [
...($wire.mountedTableActions ?? []),
Expand Down

0 comments on commit 8d0f0e7

Please sign in to comment.