Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZEVA-431: Removed the restrictions for displaying the signing confirmations #526

Merged
merged 1 commit into from
Jan 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions frontend/src/credits/components/CreditTransfersDetailsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ const CreditTransfersDetailsPage = (props) => {

const idirSignoff = (
<div>
{signedSubmittedInfo}
<label className="mt-3" htmlFor="transfer-comment">
<h4>{transferRole.governmentAnalyst ? 'Comment to director' : 'Comment to vehicle suppliers'}
</h4>
Expand Down Expand Up @@ -302,12 +301,14 @@ const CreditTransfersDetailsPage = (props) => {
<div className="my-2 px-2 pb-2">
<CreditTransfersDetailsTable submission={submission} tableType="submissionSummary" />
{transferValue}
<div className="mb-3">
{signedSubmittedInfo}
</div>
{transferRole.tradePartner
&& tradePartnerSignoff}
{transferRole.rescindable
&& (
<>
{signedSubmittedInfo}
{rescindComment}
</>
)}
Expand Down