From df1ba5e19479217256804794fd1ee063f6144e57 Mon Sep 17 00:00:00 2001 From: Mira Weller Date: Tue, 10 Dec 2024 17:09:47 +0100 Subject: [PATCH] Use same selector in walletdetection.js --- src/pretix/static/pretixpresale/js/walletdetection.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/static/pretixpresale/js/walletdetection.js b/src/pretix/static/pretixpresale/js/walletdetection.js index 35ae17180..0ebd7f4d4 100644 --- a/src/pretix/static/pretixpresale/js/walletdetection.js +++ b/src/pretix/static/pretixpresale/js/walletdetection.js @@ -53,8 +53,8 @@ $(function () { }); wallets.forEach(function(wallet) { - const labels = $('[data-wallets*='+wallet+'] + label strong, [data-wallets*='+wallet+'] + strong') - .append(' ') + const labels = $('[data-wallets*='+wallet+'] + .provider-name') + .append(' ') walletdetection[wallet]() .then(function(result) { const spans = labels.find(".wallet-loading[data-wallet=" + wallet + "]");