Skip to content
Snippets Groups Projects
Commit 23b634e7 authored by Chris Lawton's avatar Chris Lawton
Browse files

don't show empty submission information

parent b4a6c7f9
No related branches found
No related tags found
No related merge requests found
......@@ -68,19 +68,25 @@ export default class SubmissionDisplay extends Component {
return (
<div className="application-display">
<h3>{stage} Information</h3>
{stage &&
<h3>{stage} Information</h3>
}
<div className="grid grid--proposal-info">
{metaQuestions.map((response, index) => (
<MetaResponse key={index} {...response} />
))}
</div>
{metaQuestions.length > 0 &&
<div className="grid grid--proposal-info">
{metaQuestions.map((response, index) => (
<MetaResponse key={index} {...response} />
))}
</div>
}
<div className="rich-text rich-text--answers">
{questions.map((response, index) => (
<Response key={index} {...response} />
))}
</div>
{questions.length > 0 &&
<div className="rich-text rich-text--answers">
{questions.map((response, index) => (
<Response key={index} {...response} />
))}
</div>
}
</div>
)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment