javascript - Unknown props - react and material-ui -


currently i'm using react , material-ui , i've following code in component.

<dialog     title="dialog actions"     actions={actions}     modal={false}     open={this.state.open}     onrequestclose={this.handleclose}>       sure want proceed?   </dialog> 

i've imported

import react 'react'; import dialog 'material-ui/dialog'; import flatbutton 'material-ui/flatbutton'; 

but i'm getting following error message

warning: unknown prop `onkeyboardfocus` on <button> tag. remove prop element. warning: unknown prop `keyboardfocused` on <button> tag. remove prop element. 

this issue material-ui they've fixed. wait 0.15.2 release or master branch now.


Comments

Popular posts from this blog

django - (fields.E300) Field defines a relation with model 'AbstractEmailUser' which is either not installed, or is abstract -

php - Using grpc in Laravel, "Class 'Grpc\ChannelCredentials' not found." -

scikit learn - python sklearn KDTree with haversine distance -