From 850ab7f06a04b4efa2d2a32bf4bfb3f13f132206 Mon Sep 17 00:00:00 2001 From: "zaccaria.majid" Date: Tue, 6 Dec 2022 12:07:51 +0100 Subject: [PATCH] fix --- MP.INVE/wwwroot/lib/qrHelper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MP.INVE/wwwroot/lib/qrHelper.js b/MP.INVE/wwwroot/lib/qrHelper.js index 8cf7e2bb..8c7e5439 100644 --- a/MP.INVE/wwwroot/lib/qrHelper.js +++ b/MP.INVE/wwwroot/lib/qrHelper.js @@ -10,7 +10,7 @@ function displayQr(elementName, rawData) { if (elementName != "" && rawData != "") { qrcode = new QRCode(document.getElementById(elementName), { - //text: rawData, + text: rawData, width: 200, height: 200 });