mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-02 18:57:26 -04:00
Merge pull request #2744
2c515ce History: address filter case insensitive (rating89us)
This commit is contained in:
@@ -1382,7 +1382,7 @@ Rectangle {
|
||||
if(root.sortSearchString.length >= 1){
|
||||
if(item.amount && item.amount.toString().startsWith(root.sortSearchString)){
|
||||
txs.push(item);
|
||||
} else if(item.address !== "" && item.address.startsWith(root.sortSearchString)){
|
||||
} else if(item.address !== "" && item.address.toLowerCase().startsWith(root.sortSearchString.toLowerCase())){
|
||||
txs.push(item);
|
||||
} else if(item.blockheight.toString().startsWith(root.sortSearchString)) {
|
||||
txs.push(item);
|
||||
|
||||
Reference in New Issue
Block a user