Fixed rendering of empty selection with the multi select action

This commit is contained in:
Jan Böhmer 2023-02-06 00:48:00 +01:00
parent 39765f05dd
commit e067dc80d5

View file

@ -157,7 +157,7 @@ class SelectAPIController extends AbstractController
{ {
array_unshift($arr, [ array_unshift($arr, [
'text' => $this->translator->trans($text), 'text' => $this->translator->trans($text),
'value' => null, 'value' => "",
]); ]);
return $arr; return $arr;