fix View Json Table

This commit is contained in:
Билай Станислав 2024-08-07 14:31:07 +03:00
parent b374744261
commit 9e7c83b680

View File

@ -30,7 +30,7 @@ class ViewJsonTable extends JasonTable
//Хук перед выводом ячейки //Хук перед выводом ячейки
if (isset($this->beforePrintHook)){ if (isset($this->beforePrintHook)){
$hook = $this->beforePrintHook; $hook = $this->beforePrintHook;
$this->html = $hook(); $this->html .= $hook();
} }
$this->html .= "<table $paramsStr>"; $this->html .= "<table $paramsStr>";