mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
Merge pull request #2744
2c515ce
History: address filter case insensitive (rating89us)
This commit is contained in:
commit
6dd759de33
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue