This commit is contained in:
Билай Станислав 2024-08-28 14:24:25 +03:00
parent 5064042929
commit 4a15305505

View File

@ -283,9 +283,9 @@ class ListJsonTable extends JasonTable
// 'name' => $key // 'name' => $key
// ]); // ]);
// $this->html .= $objItem->fetch(); // $this->html .= $objItem->fetch();
$arr = $this->getCurrentFilter($key); $filter = $this->getCurrentFilter($key);
$class = new $arr['class']([ $class = new $filter['class']([
'param' => $arr['param'], 'param' => $filter['param'],
'name' => $key 'name' => $key
]); ]);
$this->html .= $class->fetch(); $this->html .= $class->fetch();