Fix title for panel

This fixes hover object Object issue
This commit is contained in:
Berkeley Martinez
2016-01-06 12:19:29 -08:00
parent f8aa0ec3e5
commit cb101a631f

View File

@ -29,14 +29,15 @@ export default React.createClass({
showQuestions
} = this.props;
const videoTitle = <h2>{ title }</h2>;
const videoTitle = <h4>{ title }</h4>;
return (
<Col xs={ 12 }>
<Row>
<Panel
className={ 'text-center' }
title={ videoTitle }>
header={ videoTitle }
title={ title }>
{ this.renderBody(showQuestions) }
</Panel>
</Row>