Skip to content

Commit

Permalink
fix: change input no longer working
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulia Ye committed May 31, 2024
1 parent 35e19b6 commit 6ecd242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/pages/page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default abstract class Page {
const inputEvent = new Event("input", { bubbles: true });
input.dispatchEvent(inputEvent);

const blurEvent = new Event("blur", { bubbles: true });
const blurEvent = new Event("focusout", { bubbles: true });
input.dispatchEvent(blurEvent);

if (this.debugMode) {
Expand Down

0 comments on commit 6ecd242

Please sign in to comment.