1 Commits

Author SHA1 Message Date
d98ddded07 fix view json table 2024-08-07 12:43:14 +03:00

View File

@ -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'];