change 'open' prop to 'openInfoDialog'
This commit is contained in:
parent
abca2c58a1
commit
5f1a962da2
|
@ -4,13 +4,13 @@ class InfoDialog extends React.Component {
|
|||
constructor(props) {
|
||||
super(props)
|
||||
this.state = {
|
||||
open: false,
|
||||
openInfoDialog: false,
|
||||
}
|
||||
}
|
||||
render() {
|
||||
return (
|
||||
<Dialog
|
||||
visible={this.state.open}
|
||||
visible={this.state.openInfoDialog}
|
||||
style={{ width: '650px' }}
|
||||
modal
|
||||
className='p-fluid'
|
||||
|
|
Loading…
Reference in New Issue