diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2020-01-27 01:53:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-27 01:53:31 +0100 |
| commit | 2c515ceb74f35581940e59e6cb1bf03f6785b0df (patch) | |
| tree | 017bf468cade0caf53f78bac09ce41fa858608c1 | |
| parent | 39aa6e76b145ce73824393687c33632d5179e1f7 (diff) | |
| download | monzero-gui-2c515ceb74f35581940e59e6cb1bf03f6785b0df.tar.gz monzero-gui-2c515ceb74f35581940e59e6cb1bf03f6785b0df.tar.xz monzero-gui-2c515ceb74f35581940e59e6cb1bf03f6785b0df.zip | |
History: address filter case insensitive
| -rw-r--r-- | pages/History.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/History.qml b/pages/History.qml index 2c9dc944..e8b7bf02 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -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); |
