Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit 1785bf1

Browse files
authored
Merge pull request #1153 from newhippo/master
fix onBlur returning empty synthetic event
2 parents e7ccfb1 + 4b08548 commit 1785bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/control-component-factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function createControlClass(s) {
140140
const oldHandleBlur = this.handleBlur;
141141
this.handleBlur = (...args) => {
142142
this.handleUpdate.flush();
143-
oldHandleBlur.call(this, args);
143+
oldHandleBlur.call(this, ...args);
144144
};
145145
}
146146

0 commit comments

Comments
 (0)