Skip to content

Commit

Permalink
Merge pull request StateVoicesNational#547 from MoveOnOrg/send-arrow-fix
Browse files Browse the repository at this point in the history
Send arrow fix
  • Loading branch information
shakalee14 authored Mar 19, 2018
2 parents 10ec36c + f9e324e commit fc319fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/containers/AssignmentTexterContact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ export class AssignmentTexterContact extends React.Component {
onTouchTap={() => this.handleEditMessageStatus('needsResponse')}
label='Reopen'
/>)
} else if (messageStatus === 'needsResponse' || messageStatus === 'messaged') {
} else if (messageStatus === 'needsResponse' || messageStatus === 'messaged' || messageStatus === 'convo') {
button = (<RaisedButton
onTouchTap={this.handleClickCloseContactButton}
label='Skip Reply'
Expand Down Expand Up @@ -776,7 +776,7 @@ export class AssignmentTexterContact extends React.Component {
renderCorrectSendButton() {
const { campaign } = this.props
const { contact } = this.props.data
if (contact.messageStatus === 'messaged' || contact.messageStatus === 'convo' || contact.messageStatus === 'messaged') {
if (contact.messageStatus === 'messaged' || contact.messageStatus === 'convo' || contact.messageStatus === 'needsResponse') {
return (
<SendButtonArrow
threeClickEnabled={campaign.organization.threeClickEnabled}
Expand Down

0 comments on commit fc319fa

Please sign in to comment.