diff --git a/packages/loot-core/src/client/queries.js b/packages/loot-core/src/client/queries.js index f109196..87b05bf 100644 --- a/packages/loot-core/src/client/queries.js +++ b/packages/loot-core/src/client/queries.js @@ -10,10 +10,6 @@ import { import q from '../shared/query'; import { currencyToAmount, amountToInteger } from '../shared/util'; -function isInteger(num) { - return (num | 0) === num; -} - export function getAccountFilter(accountId, field = 'account') { if (accountId) { if (accountId === 'budgeted') { @@ -82,7 +78,7 @@ export function makeTransactionSearchQuery(currentQuery, search, dateFormat) { amount: { $transform: '$abs', $eq: amountToInteger(amount) } }, amount != null && - isInteger(amount) && { + Number.isInteger(amount) && { amount: { $transform: { $abs: { $idiv: ['$', 100] } }, $eq: amount