mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-22 07:24:29 +01:00
Fix Coin selection label filtering
This commit is contained in:
@@ -153,7 +153,7 @@ $(function() {
|
||||
currentItem.amount.toString().indexOf(f) != -1 ||
|
||||
(currentItem.comment && currentItem.comment.toLowerCase().indexOf(f) != -1) ||
|
||||
(currentItem.labels && currentItem.labels.filter(function(l) {
|
||||
return l.value.toLowerCase().indexOf(f) != -1
|
||||
return l.text.toLowerCase().indexOf(f) != -1 || l.tooltip.toLowerCase().indexOf(f) != -1
|
||||
}).length > 0)) {
|
||||
result.push({...currentItem, selected: this.selectedInputs.indexOf(currentItem.outpoint) != -1
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user