FilterEditor: Do not show an empty line at the bottom of the select

This commit is contained in:
Johannes Meyer 2015-08-13 15:59:00 +02:00
parent 41b80efa0e
commit 63fb8dcafa
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ class FilterEditor extends AbstractWidget
}
$cols = $this->cachedColumnSelect;
if (! isset($cols[$active])) {
if ($active && !isset($cols[$active])) {
$cols[$active] = str_replace('_', ' ', ucfirst(ltrim($active, '_')));
}