aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorrating89us <45968869+rating89us@users.noreply.github.com>2020-01-27 01:53:31 +0100
committerGitHub <noreply@github.com>2020-01-27 01:53:31 +0100
commit2c515ceb74f35581940e59e6cb1bf03f6785b0df (patch)
tree017bf468cade0caf53f78bac09ce41fa858608c1 /pages
parent39aa6e76b145ce73824393687c33632d5179e1f7 (diff)
downloadmonzero-gui-2c515ceb74f35581940e59e6cb1bf03f6785b0df.tar.gz
monzero-gui-2c515ceb74f35581940e59e6cb1bf03f6785b0df.tar.xz
monzero-gui-2c515ceb74f35581940e59e6cb1bf03f6785b0df.zip
History: address filter case insensitive
Diffstat (limited to 'pages')
-rw-r--r--pages/History.qml2
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);