Fix _ncontains typo

This commit is contained in:
e01
2020-11-02 16:39:56 +02:00
parent 5053dbf956
commit 84f902bfac

View File

@@ -116,7 +116,7 @@ export async function applyFilter(
}
if (operator === '_ncontains') {
dbQuery.where(key, 'like', `%${compareValue}%`);
dbQuery.whereNot(key, 'like', `%${compareValue}%`);
}
if (operator === '_gt') {