change 'open' prop to 'openInfoDialog'

This commit is contained in:
Eduardo Quiros 2022-08-08 23:40:12 -06:00
parent abca2c58a1
commit 5f1a962da2
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
1 changed files with 2 additions and 2 deletions

View File

@ -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'