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) {
|
constructor(props) {
|
||||||
super(props)
|
super(props)
|
||||||
this.state = {
|
this.state = {
|
||||||
open: false,
|
openInfoDialog: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Dialog
|
<Dialog
|
||||||
visible={this.state.open}
|
visible={this.state.openInfoDialog}
|
||||||
style={{ width: '650px' }}
|
style={{ width: '650px' }}
|
||||||
modal
|
modal
|
||||||
className='p-fluid'
|
className='p-fluid'
|
||||||
|
|
Loading…
Reference in New Issue