From d68e30a4c32a63acaff33916bc549c22298c6db7 Mon Sep 17 00:00:00 2001 From: Alexander Fedyashov Date: Thu, 13 Apr 2017 23:09:07 +0300 Subject: [PATCH] feat(Input): add autoCorrect to Input props (#1573) --- src/lib/htmlInputPropsUtils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/htmlInputPropsUtils.js b/src/lib/htmlInputPropsUtils.js index accf8ffda5..90c4413ec3 100644 --- a/src/lib/htmlInputPropsUtils.js +++ b/src/lib/htmlInputPropsUtils.js @@ -5,8 +5,8 @@ export const htmlInputAttrs = [ 'selected', 'defaultValue', 'defaultChecked', // LIMITED HTML PROPS - 'autoCapitalize', 'autoComplete', 'autoFocus', 'checked', 'form', 'max', 'maxLength', 'min', 'multiple', - 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'step', 'type', 'value', + 'autoCapitalize', 'autoComplete', 'autoCorrect', 'autoFocus', 'checked', 'form', 'max', 'maxLength', 'min', + 'multiple', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'step', 'type', 'value', // Heads Up! // Do not pass disabled, it duplicates the SUI CSS opacity rule.