diff --git a/BTCPayServer.Tests/SeleniumTests.cs b/BTCPayServer.Tests/SeleniumTests.cs
index df3c926cc..a7f055db2 100644
--- a/BTCPayServer.Tests/SeleniumTests.cs
+++ b/BTCPayServer.Tests/SeleniumTests.cs
@@ -1329,7 +1329,7 @@ namespace BTCPayServer.Tests
// Check the label is applied to the tx
- Assert.Equal("label2", s.Driver.FindElement(By.XPath("//*[@id=\"WalletTransactionsList\"]//*[contains(@class, 'transactionLabel')]")).Text);
+ Assert.Equal("label2", s.Driver.FindElement(By.XPath("//*[@id=\"WalletTransactionsList\"]//*[contains(@class, 'transaction-label')]")).Text);
//change the wallet and ensure old address is not there and generating a new one does not result in the prev one
s.GenerateWallet(cryptoCode, "", true);
@@ -1617,9 +1617,9 @@ namespace BTCPayServer.Tests
TestUtils.Eventually(() =>
{
s.Driver.Navigate().Refresh();
- Assert.Contains("badge transactionLabel", s.Driver.PageSource);
+ Assert.Contains("transaction-label", s.Driver.PageSource);
});
- Assert.Equal("payout", s.Driver.FindElement(By.ClassName("transactionLabel")).Text);
+ Assert.Equal("payout", s.Driver.FindElement(By.ClassName("transaction-label")).Text);
s.GoToStore(s.StoreId, StoreNavPages.Payouts);
s.Driver.FindElement(By.Id($"{PayoutState.InProgress}-view")).Click();
diff --git a/BTCPayServer/Views/UIWallets/CoinSelection.cshtml b/BTCPayServer/Views/UIWallets/CoinSelection.cshtml
index 01d870679..3270ecb5d 100644
--- a/BTCPayServer/Views/UIWallets/CoinSelection.cshtml
+++ b/BTCPayServer/Views/UIWallets/CoinSelection.cshtml
@@ -30,25 +30,23 @@
:key="item.outpoint"
:class="{ 'active': item.selected }"
v-on:click="toggleItem($event, item, !item.selected)">
-