1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

do not multiply delay of fill script action execution 🕴️ (#17049)

Co-authored-by: Miles Blackwood <milesblackwoodmusic@gmail.com>
This commit is contained in:
Jonathan Prusik
2025-10-28 09:36:33 -04:00
committed by GitHub
parent 8eef78960d
commit af061282c6

View File

@@ -136,7 +136,7 @@ class InsertAutofillContentService implements InsertAutofillContentServiceInterf
setTimeout(() => {
this.autofillInsertActions[action]({ opid, value });
resolve();
}, delayActionsInMilliseconds * actionIndex),
}, delayActionsInMilliseconds),
);
};