chg: [Component:CRUDComponent] Default `allow_all` to true when context filtering
parent
30246dfc70
commit
2d26bc597f
|
@ -390,7 +390,7 @@ class CRUDComponent extends Component
|
||||||
protected function setFilteringContext($contextFilters, $params)
|
protected function setFilteringContext($contextFilters, $params)
|
||||||
{
|
{
|
||||||
$filteringContexts = [];
|
$filteringContexts = [];
|
||||||
if (!empty($contextFilters['allow_all'])) {
|
if (!isset($contextFilters['allow_all']) || $contextFilters['allow_all']) {
|
||||||
$filteringContexts[] = ['label' => __('All')];
|
$filteringContexts[] = ['label' => __('All')];
|
||||||
}
|
}
|
||||||
if (!empty($contextFilters['fields'])) {
|
if (!empty($contextFilters['fields'])) {
|
||||||
|
|
Loading…
Reference in New Issue