Skip to content

Commit 6744b94

Browse files
committed
[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

+1-1
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)