diff --git a/admin/src/components/ProposalDetail/index.tsx b/admin/src/components/ProposalDetail/index.tsx index e8128895..3d921d34 100644 --- a/admin/src/components/ProposalDetail/index.tsx +++ b/admin/src/components/ProposalDetail/index.tsx @@ -182,65 +182,71 @@ class ProposalDetailNaked extends React.Component { <> - -

Please review this proposal and render your judgment.

- - - - - } - /> + +

Please review this proposal and render your judgment.

+ + + + + } + /> - {p.isVersionTwo && - - {p.rfpOptIn ?

KYC has been accepted by the proposer.

:

KYC has been rejected. Recommend against approving with funding.

} - - } - /> - - } - + {p.isVersionTwo && ( + + + {p.rfpOptIn ? ( +

KYC has been accepted by the proposer.

+ ) : ( +

+ KYC has been rejected. Recommend against approving with funding. +

+ )} + + } + /> + + )}
); @@ -458,13 +464,16 @@ class ProposalDetailNaked extends React.Component { {/* RIGHT SIDE */} - {p.isVersionTwo && !p.acceptedWithFunding && p.stage === PROPOSAL_STAGE.WIP && - } + {p.isVersionTwo && + !p.acceptedWithFunding && + p.stage === PROPOSAL_STAGE.WIP && ( + + )} {/* ACTIONS */} diff --git a/frontend/client/components/CCRDraftList/index.tsx b/frontend/client/components/CCRDraftList/index.tsx index 77e95a7c..b378bf1e 100644 --- a/frontend/client/components/CCRDraftList/index.tsx +++ b/frontend/client/components/CCRDraftList/index.tsx @@ -109,7 +109,7 @@ class CCRDraftList extends React.Component { title={ <> {d.title || Untitled Request} - {d.status === CCRSTATUS.REJECTED && (rejected)} + {d.status === CCRSTATUS.REJECTED && (changes requested)} } description={d.brief || No description}