fix(web/Text): p->span

This commit is contained in:
hristoterezov 2018-09-24 19:00:08 -05:00 committed by Любомир Маринов
parent 57bf165ebd
commit 1928efda11
2 changed files with 2 additions and 1 deletions

View File

@ -67,6 +67,7 @@
@extend %navigate-section-list-text;
font-weight: bold;
margin-bottom: 16px;
display: block;
}
.navigate-section-list {
position: relative;

View File

@ -14,6 +14,6 @@ export default class Text extends Component {
* @returns {ReactElement}
*/
render() {
return React.createElement('p', this.props);
return React.createElement('span', this.props);
}
}