fix(column): Crash when heading is undefined (#4378)

Šis iesūtījums ir iekļauts:
Sorin Davidoi 2017-07-26 15:03:23 +02:00 iesūtīja Eugen Rochko
vecāks 4ba33f99fc
iesūtījums b8adb4d7fa

Apskatīt datni

@ -38,7 +38,7 @@ export default class Column extends React.PureComponent {
render () { render () {
const { heading, icon, children, active, hideHeadingOnMobile } = this.props; const { heading, icon, children, active, hideHeadingOnMobile } = this.props;
const showHeading = !hideHeadingOnMobile || (hideHeadingOnMobile && !isMobile(window.innerWidth)); const showHeading = heading && (!hideHeadingOnMobile || (hideHeadingOnMobile && !isMobile(window.innerWidth)));
const columnHeaderId = showHeading && heading.replace(/ /g, '-'); const columnHeaderId = showHeading && heading.replace(/ /g, '-');
const header = showHeading && ( const header = showHeading && (