feat: refs #6401 Minor change
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Guillermo Bonet 2024-02-29 08:16:07 +01:00
parent feeb9eece7
commit 3736d0708b
1 changed files with 1 additions and 3 deletions

View File

@ -46,9 +46,7 @@ module.exports = {
},
methods: {
getQR(id) {
const data = String(id);
return qrcode.toDataURL(data, {margin: 0});
return qrcode.toDataURL(String(id), {margin: 0});
},
}
};