diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html
index 7fb43456..e9440750 100644
--- a/data/interfaces/default/base.html
+++ b/data/interfaces/default/base.html
@@ -326,9 +326,10 @@
@@ -414,12 +415,13 @@ ${next.headerIncludes()}
});
$('#donation_type a.crypto-donation').on('shown.bs.tab', function () {
- var crypto_type = $(this).data('coin');
+ var crypto_coin = $(this).data('coin');
+ var crypto_name = $(this).data('name');
var crypto_address = $(this).data('address')
$('#crypto_qr_code').empty().qrcode({
- text: crypto_type + ":" + crypto_address
+ text: crypto_coin + ":" + crypto_address
});
- $('#crypto_type_label').html(crypto_type);
+ $('#crypto_type_label').html(crypto_name);
$('#crypto_address').html(crypto_address);
});
% endif