mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
verbatim with no autocomplete on PIN input
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 965e35604c...199884e6ae
@@ -120,7 +120,8 @@ export class SettingsComponent implements OnInit {
|
|||||||
checkboxText.appendChild(restartText);
|
checkboxText.appendChild(restartText);
|
||||||
label.innerHTML = '<input type="checkbox" id="master-pass-restart" checked>';
|
label.innerHTML = '<input type="checkbox" id="master-pass-restart" checked>';
|
||||||
label.appendChild(checkboxText);
|
label.appendChild(checkboxText);
|
||||||
div.innerHTML = '<input type="text" class="swal-content__input" id="pin-val">';
|
div.innerHTML = '<input type="text" class="swal-content__input" id="pin-val" autocomplete="off" ' +
|
||||||
|
'autocapitalize="none" autocorrect="none" spellcheck="false" inputmode="verbatim">';
|
||||||
(div.querySelector('#pin-val') as HTMLInputElement).placeholder = this.i18nService.t('pin');
|
(div.querySelector('#pin-val') as HTMLInputElement).placeholder = this.i18nService.t('pin');
|
||||||
div.appendChild(label);
|
div.appendChild(label);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user