Adding text to postAction in commentStream.

This commit is contained in:
David Jay
2016-12-06 18:14:53 -05:00
parent 13d0dec84a
commit 9e69a453d9
@@ -253,7 +253,7 @@ const mapDispatchToProps = (dispatch) => ({
getStream: (rootId) => dispatch(getStream(rootId)),
addNotification: (type, text) => dispatch(addNotification(type, text)),
clearNotification: () => dispatch(clearNotification()),
postAction: (item, action, user, itemType) => dispatch(postAction(item, action, user, itemType)),
postAction: (item, action, user, itemType, text) => dispatch(postAction(item, action, user, itemType, text)),
deleteAction: (item, action, user, itemType) => dispatch(deleteAction(item, action, user, itemType)),
appendItemArray: (item, property, value, addToFront, itemType) => dispatch(appendItemArray(item, property, value, addToFront, itemType)),
handleSignInDialog: () => dispatch(authActions.showSignInDialog()),