aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pages/History.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/pages/History.qml b/pages/History.qml
index 4ce053a7..c9a0d525 100644
--- a/pages/History.qml
+++ b/pages/History.qml
@@ -1387,6 +1387,8 @@ Rectangle {
txs.push(item);
} else if(item.blockheight.toString().startsWith(root.sortSearchString)) {
txs.push(item);
+ } else if(item.tx_note.toLowerCase().indexOf(root.sortSearchString.toLowerCase()) !== -1) {
+ txs.push(item);
} else if (item.hash.startsWith(root.sortSearchString)){
txs.push(item);
}