fix(profile): migrate to code128

This commit is contained in:
Philipp Dormann 2024-12-11 23:08:27 +01:00
parent 25c2a170bc
commit 762454a086
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314

View File

@ -491,7 +491,7 @@ const { t } = useI18n()
function textToBase64Barcode(text) {
const canvas = document.createElement("canvas");
let codeconfig = {
bcid: config.code_format || "code39",
bcid: config.code_format || "code128",
text: `${text}`,
scale: 3,
includetext: false,