mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-09 03:12:05 +02:00
Merge pull request #2250
84865cd
History: allow to search for tx_note (selsta)
This commit is contained in:
commit
5b411b471e
@ -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 New Issue
Block a user