Skip to content

Commit

Permalink
bug #3789 Fixed an error related to filters when saving entities (jav…
Browse files Browse the repository at this point in the history
…iereguiluz)

This PR was merged into the 3.0.x-dev branch.

Discussion
----------

Fixed an error related to filters when saving entities

Fixes #3587 and #3772.

Commits
-------

5938815 Fixed an error related to filters when saving entities
  • Loading branch information
javiereguiluz committed Sep 22, 2020
2 parents ffd752a + 5938815 commit 48673ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Factory/FormFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function createFiltersForm(FilterCollection $filters, Request $request):
{
$filtersForm = $this->symfonyFormFactory->createNamed('filters', FiltersFormType::class, null, [
'method' => 'GET',
'action' => $request->query->get('referrer'),
'action' => $request->query->get('referrer', ''),
'ea_filters' => $filters,
]);

Expand Down

0 comments on commit 48673ee

Please sign in to comment.