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();