From d98ddded07131f602486783f5f016002ea7d7fb7 Mon Sep 17 00:00:00 2001 From: Kavalar Date: Wed, 7 Aug 2024 12:43:14 +0300 Subject: [PATCH] fix view json table --- src/ViewJsonTable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewJsonTable.php b/src/ViewJsonTable.php index ab051c0..4c8cebc 100644 --- a/src/ViewJsonTable.php +++ b/src/ViewJsonTable.php @@ -13,7 +13,7 @@ class ViewJsonTable extends JasonTable private array $dataJson; public function __construct($json) { - $this->beforePrintCell = false; + $this->beforePrintCell = []; $this->json = $json; $this->data = json_decode($this->json, true); $this->dataJson = $this->data['data'];