Support default config option for list filters (#3201)

Fixes #2329
This commit is contained in:
arifnyet 2017-10-27 01:12:02 +08:00 committed by Luke Towers
parent ec8dd56121
commit eb0e5c74c1
1 changed files with 2 additions and 2 deletions

View File

@ -566,8 +566,8 @@ class Filter extends WidgetBase
/* /*
* Set scope value * Set scope value
*/ */
$scope->value = $this->getScopeValue($scope); $scope->value = $this->getScopeValue($scope, @$config['default']);
return $scope; return $scope;
} }