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.
2 parents f5006e1 + 1fd14e7 commit d0e7355Copy full SHA for d0e7355
src/keyboard/shared/fireInputEvent.ts
@@ -25,7 +25,7 @@ export function fireInputEvent(
25
// apply the changes before firing the input event, so that input handlers can access the altered dom and selection
26
if (isContentEditable(element)) {
27
applyNative(element, 'textContent', newValue)
28
- } /* istanbul ignore else */ else if (
+ } else /* istanbul ignore else */ if (
29
isElementType(element, ['input', 'textarea'])
30
) {
31
applyNative(element, 'value', newValue)
0 commit comments