From 4f822bf1e1e50b87fa59785a90f08b743126d45c Mon Sep 17 00:00:00 2001 From: Fabio Ivona Date: Thu, 28 Oct 2021 10:34:41 +0200 Subject: [PATCH 1/2] fix bulk actions breaking change --- src/DataTableComponent.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DataTableComponent.php b/src/DataTableComponent.php index b3d346ea6..c0a836d04 100644 --- a/src/DataTableComponent.php +++ b/src/DataTableComponent.php @@ -223,6 +223,7 @@ public function render() 'customFilters' => $this->filters(), 'rows' => $this->rows, 'modalsView' => $this->modalsView(), + 'bulkActions' => $this->bulkActions ]); } From ebf4f48ed388000581c1a97c8a3e43d98f19b587 Mon Sep 17 00:00:00 2001 From: fabio-ivona Date: Thu, 28 Oct 2021 08:35:06 +0000 Subject: [PATCH 2/2] Fix styling --- src/DataTableComponent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DataTableComponent.php b/src/DataTableComponent.php index c0a836d04..2e44992cd 100644 --- a/src/DataTableComponent.php +++ b/src/DataTableComponent.php @@ -223,7 +223,7 @@ public function render() 'customFilters' => $this->filters(), 'rows' => $this->rows, 'modalsView' => $this->modalsView(), - 'bulkActions' => $this->bulkActions + 'bulkActions' => $this->bulkActions, ]); }