未知的道具 - 反应和材料 - ui

agn*_*nes 8 javascript reactjs react-jsx material-ui

目前我正在使用react和material-ui,我在我的组件中有以下代码.

<Dialog
    title="Dialog With Actions"
    actions={actions}
    modal={false}
    open={this.state.open}
    onRequestClose={this.handleClose}>
      Are you sure that you want to proceed?
  </Dialog>
Run Code Online (Sandbox Code Playgroud)

我已经进口了

import React from 'react';
import Dialog from 'material-ui/Dialog';
import FlatButton from 'material-ui/FlatButton';
Run Code Online (Sandbox Code Playgroud)

但我总是收到以下错误消息

Warning: Unknown prop `onKeyboardFocus` on <button> tag. Remove this prop from the element.
Warning: Unknown prop `keyboardFocused` on <button> tag. Remove this prop from the element.
Run Code Online (Sandbox Code Playgroud)

Chu*_*uck 0

这是材料用户界面的一个问题,他们已经修复了。等待他们的0.15.2发布或master立即获取他们的分支。