Fixed string casting of the condition for the filter component

Fixed CSS for the error box in the logs viewer filter
This commit is contained in:
Paolo
2025-02-19 15:37:51 +01:00
parent d2cce86131
commit 37f86f651e
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -376,7 +376,7 @@ class FilterCmptLib
//
if (isset($filterField['name']) && isset($filterField['operation']) && isset($filterField['condition'])
&& !isEmptyString($filterField['name']) && !isEmptyString($filterField['operation'])
&& !isEmptyString($filterField['condition']))
&& !isEmptyString((string)$filterField['condition']))
{
// Fine
$filter = new stdClass();
+2 -1
View File
@@ -8,11 +8,12 @@
'filtercomponent' => true,
'navigationcomponent' => true,
'tabulator5' => true,
'primevue3' => true,
'phrases' => array(
'global' => array('mailAnXversandt'),
'ui' => array('bitteEintragWaehlen')
),
'customJSModules' => array('public/js/apps/LogsViewer/LogsViewer.js')
'customJSModules' => array('public/js/apps/LogsViewer/LogsViewer.js'),
);
$this->load->view('templates/FHC-Header', $includesArray);