Fixing an aspect of #32 which had previously escaped my attention
This commit is contained in:
		
							parent
							
								
									fc65b691df
								
							
						
					
					
						commit
						b525caf40a
					
				| 
						 | 
					@ -148,8 +148,12 @@ export default class StatusContent extends React.PureComponent {
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      return (
 | 
					      return (
 | 
				
			||||||
        <div className='status__content status__content--with-action' ref={this.setRef} onMouseDown={this.handleMouseDown} onMouseUp={this.handleMouseUp}>
 | 
					        <div className='status__content status__content--with-action' ref={this.setRef}>
 | 
				
			||||||
          <p style={{ marginBottom: hidden && status.get('mentions').isEmpty() ? '0px' : null }}>
 | 
					          <p
 | 
				
			||||||
 | 
					            style={{ marginBottom: hidden && status.get('mentions').isEmpty() ? '0px' : null }}
 | 
				
			||||||
 | 
					            onMouseDown={this.handleMouseDown}
 | 
				
			||||||
 | 
					            onMouseUp={this.handleMouseUp}
 | 
				
			||||||
 | 
					          >
 | 
				
			||||||
            <span dangerouslySetInnerHTML={spoilerContent} />
 | 
					            <span dangerouslySetInnerHTML={spoilerContent} />
 | 
				
			||||||
            {' '}
 | 
					            {' '}
 | 
				
			||||||
            <button tabIndex='0' className='status__content__spoiler-link' onClick={this.handleSpoilerClick}>
 | 
					            <button tabIndex='0' className='status__content__spoiler-link' onClick={this.handleSpoilerClick}>
 | 
				
			||||||
| 
						 | 
					@ -160,11 +164,13 @@ export default class StatusContent extends React.PureComponent {
 | 
				
			||||||
          {mentionsPlaceholder}
 | 
					          {mentionsPlaceholder}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
          <div className={`status__content__spoiler ${!hidden ? 'status__content__spoiler--visible' : ''}`}>
 | 
					          <div className={`status__content__spoiler ${!hidden ? 'status__content__spoiler--visible' : ''}`}>
 | 
				
			||||||
 | 
					            <div
 | 
				
			||||||
            <div style={directionStyle} dangerouslySetInnerHTML={content} />
 | 
					              style={directionStyle}
 | 
				
			||||||
 | 
					              onMouseDown={this.handleMouseDown}
 | 
				
			||||||
 | 
					              onMouseUp={this.handleMouseUp}
 | 
				
			||||||
 | 
					              dangerouslySetInnerHTML={content}
 | 
				
			||||||
 | 
					            />
 | 
				
			||||||
            {children}
 | 
					            {children}
 | 
				
			||||||
 | 
					 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue