Skip to content

Commit

Permalink
Refactor #862
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Feb 26, 2021
1 parent e10ff5d commit f50bc2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dialog/Dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ export class Dialog extends Component {
<CSSTransition nodeRef={this.dialogRef} classNames="p-dialog" timeout={transitionTimeout} in={this.state.visible} unmountOnExit
onEntered={this.onEntered} onExited={this.onExited}>
<div ref={this.dialogRef} id={this.id} className={className} style={this.props.style}
role="dialog" aria-labelledby={this.id + '_header'} aria-describedby={this.id + '_content'} aria-modal={this.props.model}>
role="dialog" aria-labelledby={this.id + '_header'} aria-describedby={this.id + '_content'} aria-modal={this.props.modal}>
{header}
{content}
{footer}
Expand Down

0 comments on commit f50bc2b

Please sign in to comment.