From 2c515ceb74f35581940e59e6cb1bf03f6785b0df Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Mon, 27 Jan 2020 01:53:31 +0100 Subject: [PATCH] History: address filter case insensitive --- pages/History.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);