mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
History: allow to search for tx_note
This commit is contained in:
parent
c7956f76ea
commit
84865cdead
1 changed files with 2 additions and 0 deletions
|
@ -1387,6 +1387,8 @@ Rectangle {
|
||||||
txs.push(item);
|
txs.push(item);
|
||||||
} else if(item.blockheight.toString().startsWith(root.sortSearchString)) {
|
} else if(item.blockheight.toString().startsWith(root.sortSearchString)) {
|
||||||
txs.push(item);
|
txs.push(item);
|
||||||
|
} else if(item.tx_note.toLowerCase().indexOf(root.sortSearchString.toLowerCase()) !== -1) {
|
||||||
|
txs.push(item);
|
||||||
} else if (item.hash.startsWith(root.sortSearchString)){
|
} else if (item.hash.startsWith(root.sortSearchString)){
|
||||||
txs.push(item);
|
txs.push(item);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue