diff options
author | Rachel H <rainyday@users.noreply.github.com> | 2017-04-09 02:35:23 -0700 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-09 11:35:23 +0200 |
commit | b1881a3d481bccfba984d42380ab2f3780bd0845 (patch) | |
tree | 1476b2cf13f0f2a07e8adb4c6e454699169fee3f /app/assets/javascripts/components | |
parent | d5a675099a0ccf0c35ce1756f5015108cda1489a (diff) |
Fix nonworking clear notices button (#1316)
Diffstat (limited to 'app/assets/javascripts/components')
-rw-r--r-- | app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx b/app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx index 62c3e61e0..71877fb2b 100644 --- a/app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx +++ b/app/assets/javascripts/components/features/notifications/components/clear_column_button.jsx @@ -25,7 +25,7 @@ const ClearColumnButton = React.createClass({ const { intl } = this.props; 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' /> </div> ); |