test_dev_resolveConflicts #647

Merged
jsegarra merged 40 commits from test_dev_resolveConflicts into dev 2024-08-27 07:10:20 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit e1e768948e - Show all commits

View File

@ -161,7 +161,7 @@ async function fetchFilter(val) {
if ($props.filterOptions.length) {
defaultWhere = $props.filterOptions.reduce((obj, prop) => {
if (!obj.or) obj.or = [];
obj.or.push({ [prop]: { like: `%${val}%` } });
obj.or.push({ [prop]: $props.useLike ? { like: `%${val}%` } : val });
return obj;
}, {});
} else