Skip to content
Snippets Groups Projects
Commit 95972363 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Camelize the meta questions

parent 4421f9aa
No related branches found
No related tags found
No related merge requests found
...@@ -64,14 +64,14 @@ export default class SubmissionDisplay extends Component { ...@@ -64,14 +64,14 @@ export default class SubmissionDisplay extends Component {
</div> </div>
) )
} }
const { meta_questions = [], questions = [], stage} = this.props.submission; const { metaQuestions = [], questions = [], stage} = this.props.submission;
return ( return (
<div className="application-display"> <div className="application-display">
<h3>{stage} Information</h3> <h3>{stage} Information</h3>
<div className="grid grid--proposal-info"> <div className="grid grid--proposal-info">
{meta_questions.map((response, index) => ( {metaQuestions.map((response, index) => (
<MetaResponse key={index} {...response} /> <MetaResponse 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