Skip to content

Commit

Permalink
Adds convo condition to fix mobile button stacking
Browse files Browse the repository at this point in the history
  • Loading branch information
shakalee14 committed Mar 19, 2018
1 parent 8c6c895 commit f9e324e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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

0 comments on commit f9e324e

Please sign in to comment.