wip: fix registration code
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Philipp Dormann 2023-02-03 16:41:42 +01:00
parent f4d1c7b053
commit 51f8d0fb42
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314

View File

@ -641,11 +641,11 @@ function textToBase64Barcode(text) {
var canvas = document.createElement("canvas");
bwipjs.toCanvas(canvas, {
bcid: config.codeformat || "code39",
text: text,
text: `${text}`,
scale: 3,
height: 10,
// width: 10,
includetext: true,
includetext: false,
textxalign: "center",
backgroundcolor: "ffffff",
});