Do not search tags in deleted transactions (#5409)

This commit is contained in:
POGMAN
2025-07-28 16:17:03 +02:00
committed by GitHub
parent c44b32805f
commit 45bfd23daa
2 changed files with 7 additions and 1 deletions

View File

@@ -839,7 +839,7 @@ export function findTags() {
`
SELECT notes
FROM transactions
WHERE notes LIKE ?
WHERE tombstone = 0 AND notes LIKE ?
`,
['%#%'],
);