From b3113c109b1e963f4a21c949f478d2724d8c01a9 Mon Sep 17 00:00:00 2001 From: j433866 Date: Thu, 20 Dec 2018 14:42:12 +0000 Subject: [PATCH] Change module to Image, change default format value to PNG --- src/core/operations/GenerateQRCode.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/operations/GenerateQRCode.mjs b/src/core/operations/GenerateQRCode.mjs index 198a9500..2b260617 100644 --- a/src/core/operations/GenerateQRCode.mjs +++ b/src/core/operations/GenerateQRCode.mjs @@ -22,9 +22,9 @@ class GenerateQRCode extends Operation { super(); this.name = "Generate QR Code"; - this.module = "QRCode"; + this.module = "Image"; this.description = "Generates a QR code from text."; - this.infoURL = "https://en.wikipedia.org/wiki/QR_code"; + this.infoURL = "https://wikipedia.org/wiki/QR_code"; this.inputType = "string"; this.outputType = "byteArray"; this.presentType = "html"; @@ -32,7 +32,7 @@ class GenerateQRCode extends Operation { { "name": "Image Format", "type": "option", - "value": ["SVG", "PNG"] + "value": ["PNG", "SVG"] }, { "name": "Size of QR module",