Removed escaping of data

Signed-off-by: objecttothis <objecttothis@gmail.com>
This commit is contained in:
objecttothis
2024-04-29 13:41:06 +04:00
committed by jekkos
parent 141a644d14
commit c60d81dd88

View File

@@ -62,7 +62,7 @@
exportTypes: ['json', 'xml', 'csv', 'txt', 'sql', 'excel', 'pdf'],
pagination: true,
showColumns: true,
data: <?= json_encode(esc($data)) ?>,
data: <?= json_encode($data) ?>,
iconSize: 'sm',
paginationVAlign: 'bottom',
escape: true,