Skip to content

Commit

Permalink
[fixed] 'modalClassName' property for 'ModalTitle'
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKVal committed Jul 17, 2015
1 parent f0d65c1 commit 6744b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ModalTitle.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class ModalTitle extends React.Component {

render() {
return (
<h4 {...this.props} className={classnames(this.props.className, 'modal-title')}>
<h4 {...this.props} className={classnames(this.props.className, this.props.modalClassName)}>
{ this.props.children }
</h4>
);
Expand Down

0 comments on commit 6744b94

Please sign in to comment.