1
mirror of https://github.com/monero-project/monero-gui synced 2025-01-03 20:56:23 +01:00

History: allow to search for tx_note

This commit is contained in:
selsta 2019-07-03 13:54:01 +02:00
parent c7956f76ea
commit 84865cdead
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E

View File

@ -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);
}