From b1322746d2ceb5b840b4ad0d3ffc770f6b73d83b Mon Sep 17 00:00:00 2001 From: Saturnino Abril Date: Thu, 13 Jul 2017 01:31:09 +0900 Subject: dismiss deleted message in RHS (#6914) --- webapp/components/rhs_thread/index.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'webapp/components/rhs_thread/index.js') diff --git a/webapp/components/rhs_thread/index.js b/webapp/components/rhs_thread/index.js index c4465cafd..ed7618427 100644 --- a/webapp/components/rhs_thread/index.js +++ b/webapp/components/rhs_thread/index.js @@ -2,7 +2,9 @@ // See License.txt for license information. import {connect} from 'react-redux'; +import {bindActionCreators} from 'redux'; import {getPost, makeGetPostsForThread} from 'mattermost-redux/selectors/entities/posts'; +import {removePost} from 'mattermost-redux/actions/posts'; import RhsThread from './rhs_thread.jsx'; @@ -24,4 +26,12 @@ function makeMapStateToProps() { }; } -export default connect(makeMapStateToProps)(RhsThread); +function mapDispatchToProps(dispatch) { + return { + actions: bindActionCreators({ + removePost + }, dispatch) + }; +} + +export default connect(makeMapStateToProps, mapDispatchToProps)(RhsThread); -- cgit v1.2.3-1-g7c22