diff --git a/BTCPayServer/Views/Wallets/CoinSelection.cshtml b/BTCPayServer/Views/Wallets/CoinSelection.cshtml index 314396685..c63023e40 100644 --- a/BTCPayServer/Views/Wallets/CoinSelection.cshtml +++ b/BTCPayServer/Views/Wallets/CoinSelection.cshtml @@ -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 });