Skip to content

Commit

Permalink
Fixed #965 - Growl detail should be placed in <div> not <p>
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Jul 22, 2019
1 parent 4eb9ae4 commit 0d6bcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/growl/GrowlMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class GrowlMessage extends Component {
<span className={iconClassName}></span>
<div className="p-growl-message">
<span className="p-growl-title">{this.props.message.summary}</span>
<p>{this.props.message.detail}</p>
<div>{this.props.message.detail}</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 0d6bcbd

Please sign in to comment.