logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: b1881a3d481bccfba984d42380ab2f3780bd0845
parent: d5a675099a0ccf0c35ce1756f5015108cda1489a
Author: Rachel H <rainyday@users.noreply.github.com>
Date:   Sun,  9 Apr 2017 02:35:23 -0700

Fix nonworking clear notices button (#1316)


Diffstat:

Mapp/assets/javascripts/components/features/notifications/components/clear_column_button.jsx2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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 @@ -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> );