Skip to content

Commit

Permalink
Merge pull request #380 from flexion/112_fix_petitioner_doc_status
Browse files Browse the repository at this point in the history
112 Petitioner document status
  • Loading branch information
codyseibert authored Dec 14, 2018
2 parents d6435e2 + 8c584b8 commit 860f04d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web-client/src/views/CaseDetailPetitioner.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export default connect(
</td>
<td>
<span className="responsive-label">Status</span>
{caseDetail.irsSendDate && (
{item.isStatusServed && (
<span>
R served on {moment(caseDetail.irsDate).format('L')}
</span>
Expand Down
2 changes: 1 addition & 1 deletion web-client/src/views/CaseDetailRespondent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default connect(
</td>
<td>
<span className="responsive-label">Status</span>
{document.status === 'served' && (
{document.isStatusServed && (
<span>{caseDetail.datePetitionSentToIrsMessage}</span>
)}
{caseDetail.showDocumentStatus && (
Expand Down

0 comments on commit 860f04d

Please sign in to comment.