forked from Mirrors/keyoxide-web
Fix QR code
This commit is contained in:
parent
16d84b3b5f
commit
7fb177f15c
1 changed files with 1 additions and 1 deletions
|
@ -822,7 +822,7 @@ if (elUtilQR) {
|
||||||
|
|
||||||
elInput.addEventListener("input", async function(evt) {
|
elInput.addEventListener("input", async function(evt) {
|
||||||
if (evt.target.value) {
|
if (evt.target.value) {
|
||||||
qrcode.makeCode(`OPENPGP4FPR:${evt.target.value.toUpperCase}`);
|
qrcode.makeCode(`OPENPGP4FPR:${evt.target.value.toUpperCase()}`);
|
||||||
} else {
|
} else {
|
||||||
qrcode.clear();
|
qrcode.clear();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue