Skip to content

Commit a408ae2

Browse files
committed
Switch isInteractive tag order for alignment
1 parent c3e3881 commit a408ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderers/dom/client/eventPlugins/SimpleEventPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function getDictionaryKey(inst: ReactInstance): string {
148148

149149
function isInteractive(tag) {
150150
return tag === 'button' || tag === 'input' ||
151-
tag === 'textarea' || tag === 'select';
151+
tag === 'select' || tag === 'textarea';
152152
}
153153

154154
function shouldPreventMouseEvent(inst) {

0 commit comments

Comments
 (0)