]> git.immae.eu Git - github/fretlink/time-picker.git/commitdiff
Add a noop onChange to remove react's warning
authorWei Zhu <yesmeck@gmail.com>
Sun, 19 Nov 2017 13:21:04 +0000 (21:21 +0800)
committerWei Zhu <yesmeck@gmail.com>
Sun, 19 Nov 2017 13:21:04 +0000 (21:21 +0800)
> Warning: Failed prop type: You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.

src/TimePicker.jsx

index 9a91a2ca0aba129d89dcdb845ed610e0896b5649..e3c5a79fd6e232f675151318000b4c174110c633 100644 (file)
@@ -285,6 +285,7 @@ export default class Picker extends Component {
             onFocus={onFocus}
             onBlur={onBlur}
             autoFocus={autoFocus}
+            onChange={noop}
           />
           <span className={`${prefixCls}-icon`}/>
         </span>