Skip to content

Commit

Permalink
Merge branch 'hotfix/fix_module_option_null' into 'release/2.3.0'
Browse files Browse the repository at this point in the history
Fix module option null

See merge request metamodels/core!293
  • Loading branch information
zonky2 committed Jul 8, 2024
2 parents 9a32236 + c399513 commit ab9bbab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ protected function buildFilterParamsFor(DC_Table $dataContainer, $elementName)
return;
}

$translatedNull = $this->translator->trans('filter_option.null', [], self::$tableName);
$translatedNull = $this->translator->trans('filter_option.null', [], static::$tableName);

$collection = $this->filterFactory->createCollection($filterId);
$dca = $collection->getParameterDCA();
Expand Down

0 comments on commit ab9bbab

Please sign in to comment.