|
@@ -102,7 +102,12 @@ function shouldSetAsProp(
|
|
|
// them as attributes.
|
|
// them as attributes.
|
|
|
// Note that `contentEditable` doesn't have this problem: its DOM
|
|
// Note that `contentEditable` doesn't have this problem: its DOM
|
|
|
// property is also enumerated string values.
|
|
// property is also enumerated string values.
|
|
|
- if (key === 'spellcheck' || key === 'draggable' || key === 'translate') {
|
|
|
|
|
|
|
+ if (
|
|
|
|
|
+ key === 'spellcheck' ||
|
|
|
|
|
+ key === 'draggable' ||
|
|
|
|
|
+ key === 'translate' ||
|
|
|
|
|
+ key === 'autocorrect'
|
|
|
|
|
+ ) {
|
|
|
return false
|
|
return false
|
|
|
}
|
|
}
|
|
|
|
|
|