We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39fa0e4 commit 18a8fb9Copy full SHA for 18a8fb9
src/content.ts
@@ -248,7 +248,10 @@ function pasteCode(code: string) {
248
}
249
250
for (const inputBox of inputBoxes) {
251
- if ((!inputBox.value || /^(\d{6}|\d{8})$/.test(inputBox.value)) && inputBox.type !== "password") {
+ if (
252
+ (!inputBox.value || /^(\d{6}|\d{8})$/.test(inputBox.value)) &&
253
+ inputBox.type !== "password"
254
+ ) {
255
inputBox.value = code;
256
fireInputEvents(inputBox);
257
return;
0 commit comments