From 03189d473cd9194a5e50817b99bdc4e18169deaa Mon Sep 17 00:00:00 2001 From: James D'Alton <jda1g15@soton.ac.uk> Date: Wed, 13 May 2020 10:24:56 +0100 Subject: [PATCH] Minor edits to 'view form template' --- compforge/src/Components/ViewTemplateModal.react.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compforge/src/Components/ViewTemplateModal.react.jsx b/compforge/src/Components/ViewTemplateModal.react.jsx index 62c2a1d2..c5344569 100644 --- a/compforge/src/Components/ViewTemplateModal.react.jsx +++ b/compforge/src/Components/ViewTemplateModal.react.jsx @@ -45,15 +45,15 @@ function ViewTemplateModal(props) { const body = ( <div style={modalStyle} className={classes.paper}> - <h2 style={{ textAlign: 'center', textDecoration: 'underline' }}>Template Title: {formData.title}</h2> + <h2 style={{ textAlign: 'center', textDecoration: 'underline' }}>{formData.title}</h2> <Container component="main" maxWidth="md"> <div> - <h3>Description:</h3> + <h3>Description</h3> <p style={{borderBottom: '1px solid #999', padding: '16px 16px 32px 16px'}}> {formData.description} </p> </div> - <h3>Questions:</h3> + <h3>Questions | Responses</h3> <div>{renderedQuestions}</div> </Container> -- GitLab