From 7ef9ffe04120ea81dea43bdd2eaa4a4c6cdef2a3 Mon Sep 17 00:00:00 2001 From: fipwmaqzufheoxq92ebc <29818044+fipwmaqzufheoxq92ebc@users.noreply.github.com> Date: Sun, 25 Oct 2020 08:42:58 +0100 Subject: [PATCH] Fixes #1092: Repair QR-Codes for API-Keys (#1093) --- public/viewjs/manageapikeys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/viewjs/manageapikeys.js b/public/viewjs/manageapikeys.js index 07e03c46..b274fe1c 100644 --- a/public/viewjs/manageapikeys.js +++ b/public/viewjs/manageapikeys.js @@ -63,7 +63,7 @@ $(document).on('click', '.apikey-delete-button', function(e) }); $('.apikey-show-qr-button').on('click', function() { - var qrcodeHtml = getQRCodeForAPIKey($(this).data('apikey-key'), $(this).data('apikey-type')); + var qrcodeHtml = getQRCodeForAPIKey($(this).data('apikey-type'), $(this).data('apikey-key')); bootbox.alert({ title: __t('API key'), message: "

" + qrcodeHtml + "

",