(kestrel =>
//{
- // kestrel.Listen(IPAddress.Loopback, 5012, l =>
+ // kestrel.Listen(IPAddress.Loopback, 5012, l =>
// {
// l.UseHttps("devtest.pfx", "toto");
// });
diff --git a/BTCPayServer/Views/Stores/AddDerivationScheme.cshtml b/BTCPayServer/Views/Stores/AddDerivationScheme.cshtml
index b7f2bd3c6..66398b744 100644
--- a/BTCPayServer/Views/Stores/AddDerivationScheme.cshtml
+++ b/BTCPayServer/Views/Stores/AddDerivationScheme.cshtml
@@ -30,8 +30,8 @@
-
- If you own a ledger wallet use chrome, open the app activates the Browser support, and refresh this page.
+
+ No ledger wallet detected. If you own one, use chrome, open the app, activates the Browser support, and refresh this page.
A ledger wallet is detected, please use our recommended choice
diff --git a/BTCPayServer/wwwroot/js/StoreAddDerivationScheme.js b/BTCPayServer/wwwroot/js/StoreAddDerivationScheme.js
index c6f9d7fab..4b9b0a6e4 100644
--- a/BTCPayServer/wwwroot/js/StoreAddDerivationScheme.js
+++ b/BTCPayServer/wwwroot/js/StoreAddDerivationScheme.js
@@ -8,8 +8,10 @@
}
function Write(prefix, type, message) {
-
-
+ if (type === "error") {
+ $("#no-ledger-info").css("display", "block");
+ $("#ledger-info").css("display", "none");
+ }
}
$("#ledger-info-recommended").on("click", function (elem) {
@@ -20,7 +22,7 @@
});
$("#CryptoCurrency").on("change", function (elem) {
- $("#no-ledger-info").css("display", "block");
+ $("#no-ledger-info").css("display", "none");
$("#ledger-info").css("display", "none");
updateInfo();
});