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:
parent
c7956f76ea
commit
84865cdead
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user