Fix undefined error regression in status component in web UI (#12712)
Regression from #12661
This commit is contained in:
		
							parent
							
								
									38ccdb696f
								
							
						
					
					
						commit
						b5ebc8e7dd
					
				
					 1 changed files with 0 additions and 20 deletions
				
			
		| 
						 | 
				
			
			@ -103,11 +103,6 @@ class Status extends ImmutablePureComponent {
 | 
			
		|||
    statusId: undefined,
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  // Track height changes we know about to compensate scrolling
 | 
			
		||||
  componentDidMount () {
 | 
			
		||||
    this.didShowCard = !this.props.muted && !this.props.hidden && this.props.status && this.props.status.get('card');
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  static getDerivedStateFromProps(nextProps, prevState) {
 | 
			
		||||
    if (nextProps.status && nextProps.status.get('id') !== prevState.statusId) {
 | 
			
		||||
      return {
 | 
			
		||||
| 
						 | 
				
			
			@ -119,21 +114,6 @@ class Status extends ImmutablePureComponent {
 | 
			
		|||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Compensate height changes
 | 
			
		||||
  componentDidUpdate (prevProps, prevState, snapshot) {
 | 
			
		||||
    const doShowCard  = !this.props.muted && !this.props.hidden && this.props.status && this.props.status.get('card');
 | 
			
		||||
 | 
			
		||||
    if (doShowCard && !this.didShowCard) {
 | 
			
		||||
      this.didShowCard = true;
 | 
			
		||||
 | 
			
		||||
      if (snapshot !== null && this.props.updateScrollBottom) {
 | 
			
		||||
        if (this.node && this.node.offsetTop < snapshot.top) {
 | 
			
		||||
          this.props.updateScrollBottom(snapshot.height - snapshot.top);
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  handleToggleMediaVisibility = () => {
 | 
			
		||||
    this.setState({ showMedia: !this.state.showMedia });
 | 
			
		||||
  }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue