Skip to content
Snippets Groups Projects
Commit 5a1cc357 authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[BUGFIX] Fixing an error with the area filter

parent 48d6ab49
No related branches found
No related tags found
No related merge requests found
......@@ -295,7 +295,7 @@ class JobRepository extends Repository {
}
if ($filters['filterArea'] !== '0' && $filters['filterArea'] !== NULL) {
$constraints[] = $query->equals('company.area', $filters['filterArea']);
$constraints[] = $query->equals('area', $filters['filterArea']);
}
if (\count($constraints)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment