8355-testToMaster #3336

Merged
alexm merged 241 commits from 8355-testToMaster into master 2025-01-07 06:44:57 +00:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit f965f7aa52 - Show all commits

View File

@ -109,8 +109,7 @@ module.exports = Self => {
case 'departmentFk': case 'departmentFk':
return {'f.departmentFk': value}; return {'f.departmentFk': value};
case 'onlyWithDestination': case 'onlyWithDestination':
if (!value) return; return {'f.id': value ? {neq: null} : null};
return {'f.id': {neq: null}};
} }
}); });