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 c2c4c10 commit 6a1b3ccCopy full SHA for 6a1b3cc
src/renderers/dom/client/wrappers/DisabledInputUtils.js
@@ -38,7 +38,7 @@ var DisabledInputUtils = {
38
// Copy the props, except the mouse listeners
39
var nativeProps = {};
40
for (var key in props) {
41
- if (props.hasOwnProperty(key) && !disableableMouseListenerNames[key]) {
+ if (!disableableMouseListenerNames[key] && props.hasOwnProperty(key)) {
42
nativeProps[key] = props[key];
43
}
44
0 commit comments