Skip to content

Commit

Permalink
Update belongs_to_many.blade.php
Browse files Browse the repository at this point in the history
Added missed js method calling for "Uncheck All" btn.
  • Loading branch information
vcaraseni authored Aug 16, 2024
1 parent 00257bf commit 189ebda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/pages/en/fields/belongs_to_many.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public function fields(): array
->onClick(fn() => 'checkAll', 'prevent'),

ActionButton::make('Uncheck all', '')
->onClick(fn() => '', 'prevent')
->onClick(fn() => 'uncheckAll', 'prevent')
]) // [tl! focus:-6]
];
}
Expand Down

0 comments on commit 189ebda

Please sign in to comment.