mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 23:09:29 -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) {
|
||||
if (evt.target.value) {
|
||||
qrcode.makeCode(`OPENPGP4FPR:${evt.target.value}`);
|
||||
qrcode.makeCode(`OPENPGP4FPR:${evt.target.value.toUpperCase}`);
|
||||
} else {
|
||||
qrcode.clear();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue