diff --git a/src/views/Profile.vue b/src/views/Profile.vue index fe02020..abb7a02 100644 --- a/src/views/Profile.vue +++ b/src/views/Profile.vue @@ -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", });