From 50df868f85f20413cf9622c5909d359912c9a18a Mon Sep 17 00:00:00 2001 From: ReturnFI <151555003+ReturnFI@users.noreply.github.com> Date: Wed, 26 Nov 2025 21:55:57 +0000 Subject: [PATCH] fix(users): Change text color to muted for QR code type labels --- core/scripts/webpanel/assets/js/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/scripts/webpanel/assets/js/users.js b/core/scripts/webpanel/assets/js/users.js index e7e4e8a..ce28caf 100644 --- a/core/scripts/webpanel/assets/js/users.js +++ b/core/scripts/webpanel/assets/js/users.js @@ -373,7 +373,7 @@ $(function () { ].forEach(config => { if (!config.link) return; const qrId = `qrcode-${config.type}`; - const card = $(`
${config.type}
`); + const card = $(`
${config.type}
`); qrcodesContainer.append(card); new QRCodeStyling({ width: 200, height: 200, data: config.link, margin: 2 }).append(document.getElementById(qrId)); card.on("click", () => navigator.clipboard.writeText(config.link).then(() => Swal.fire({ icon: "success", title: `${config.type} link copied!`, showConfirmButton: false, timer: 1200 })));