mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-29 02:53:50 +00:00
Fixed: [export] Fix checking of null value: take also empty string value
This commit is contained in:
@@ -67,6 +67,10 @@ class CancelReasonAggregator implements AggregatorInterface
|
||||
return 'Cancel reason';
|
||||
}
|
||||
|
||||
if (null === $value || '' === $value) {
|
||||
return '';
|
||||
}
|
||||
|
||||
$j = $this->cancelReasonRepository->find($value);
|
||||
|
||||
return $this->translatableStringHelper->localize(
|
||||
|
Reference in New Issue
Block a user