Skip to content

Commit

Permalink
Fix: clean-up string
Browse files Browse the repository at this point in the history
  • Loading branch information
robertSt7 committed Oct 25, 2023
1 parent 15afc7e commit b2cad16
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Helper/GridHelperService.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ public function getFilterCondition(string $filterJson, ClassDefinition $class, ?
$conditionFilters = '1 = 1';
if (count($conditionPartsFilters) > 0) {
$conditionFilters = '(' . implode(' AND ', $conditionPartsFilters) . ')';
$conditionFilters = str_replace(array('--', ';'), '', $conditionFilters);
}
Logger::log('DataObjectController filter condition:' . $conditionFilters);

Expand Down

0 comments on commit b2cad16

Please sign in to comment.