Skip to content

Commit 0f13750

Browse files
committed
Fix traits
1 parent 9edba73 commit 0f13750

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/DataTableComponent.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
*/
2020
abstract class DataTableComponent extends Component
2121
{
22-
use WithBulkActions;
23-
use WithCustomPagination;
24-
use WithFilters;
25-
use WithPerPagePagination;
26-
use WithSorting;
22+
use WithBulkActions,
23+
WithCustomPagination,
24+
WithFilters,
25+
WithPerPagePagination,
26+
WithSorting;
2727

2828
/**
2929
* The default pagination theme.

0 commit comments

Comments
 (0)