forked from cybrespace/mastodon
		
	fix(column): Crash when heading is undefined (#4378)
This commit is contained in:
		
							parent
							
								
									4ba33f99fc
								
							
						
					
					
						commit
						b8adb4d7fa
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -38,7 +38,7 @@ export default class Column extends React.PureComponent {
 | 
			
		|||
  render () {
 | 
			
		||||
    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 header = showHeading && (
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue