mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-23 07:19:28 -07:00
Force uppercase for qr links (spec)
This commit is contained in:
parent
6a63284c65
commit
16d84b3b5f
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}`);
|
qrcode.makeCode(`OPENPGP4FPR:${evt.target.value.toUpperCase}`);
|
||||||
} else {
|
} else {
|
||||||
qrcode.clear();
|
qrcode.clear();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue