Fix nonworking clear notices button (#1316)

master
Rachel H 7 years ago committed by Eugen
parent d5a675099a
commit b1881a3d48
  1. 2
      app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx

@ -25,7 +25,7 @@ const ClearColumnButton = React.createClass({
const { intl } = this.props; const { intl } = this.props;
return ( return (
<div title={intl.formatMessage(messages.clear)} className='column-icon' tabIndex='0' style={iconStyle} onClick={this.onClick}> <div title={intl.formatMessage(messages.clear)} className='column-icon' tabIndex='0' style={iconStyle} onClick={this.props.onClick}>
<i className='fa fa-eraser' /> <i className='fa fa-eraser' />
</div> </div>
); );

Loading…
Cancel
Save