Merge pull request #2250

84865cd History: allow to search for tx_note (selsta)
pull/2/head
luigi1111 5 years ago
commit 5b411b471e
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -1387,6 +1387,8 @@ Rectangle {
txs.push(item);
} else if(item.blockheight.toString().startsWith(root.sortSearchString)) {
txs.push(item);
} else if(item.tx_note.toLowerCase().indexOf(root.sortSearchString.toLowerCase()) !== -1) {
txs.push(item);
} else if (item.hash.startsWith(root.sortSearchString)){
txs.push(item);
}