Skip to content

Commit 6744b94

Browse files
committedJul 17, 2015
[fixed] 'modalClassName' property for 'ModalTitle'
1 parent f0d65c1 commit 6744b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/ModalTitle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class ModalTitle extends React.Component {
55

66
render() {
77
return (
8-
<h4 {...this.props} className={classnames(this.props.className, 'modal-title')}>
8+
<h4 {...this.props} className={classnames(this.props.className, this.props.modalClassName)}>
99
{ this.props.children }
1010
</h4>
1111
);

0 commit comments

Comments
 (0)