@@ -26,7 +26,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
 | 
			
		||||
    settings: ImmutablePropTypes.map.isRequired,
 | 
			
		||||
    onOpenMedia: PropTypes.func.isRequired,
 | 
			
		||||
    onOpenVideo: PropTypes.func.isRequired,
 | 
			
		||||
    onToggleHidden: PropTypes.func.isRequired,
 | 
			
		||||
    onToggleHidden: PropTypes.func,
 | 
			
		||||
    expanded: PropTypes.bool,
 | 
			
		||||
    measureHeight: PropTypes.bool,
 | 
			
		||||
    onHeightChange: PropTypes.func,
 | 
			
		||||
 
 | 
			
		||||
@@ -160,14 +160,6 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  onToggleHidden (status) {
 | 
			
		||||
    if (status.get('hidden')) {
 | 
			
		||||
      dispatch(revealStatus(status.get('id')));
 | 
			
		||||
    } else {
 | 
			
		||||
      dispatch(hideStatus(status.get('id')));
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(DetailedStatus));
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user