| @@ -88,22 +88,25 @@ const StatusChangeDialog = (props) => { | |||||
| const getNotAcceptedContent = () => { | const getNotAcceptedContent = () => { | ||||
| setContent(<Grid container direction="row" justifyContent="center" alignItems="center"> | setContent(<Grid container direction="row" justifyContent="center" alignItems="center"> | ||||
| <Grid item xs={12} md={12} lg={12} sx={{ mb: 1, }}> | |||||
| <Grid item xs={12} md={12} lg={12}> | |||||
| <TextField | <TextField | ||||
| fullWidth | |||||
| multiline | multiline | ||||
| row={10} | |||||
| minRows={4} | |||||
| maxRows={4} | |||||
| inputProps={{ maxLength: 255 }} | |||||
| fullWidth | |||||
| rows={6} | |||||
| placeholder="Please enter reason" | placeholder="Please enter reason" | ||||
| helperText={helperText} | helperText={helperText} | ||||
| onChange={(newValues) => { | onChange={(newValues) => { | ||||
| setRemarks(newValues.target.value); | setRemarks(newValues.target.value); | ||||
| setHelperText(""); | setHelperText(""); | ||||
| }} | }} | ||||
| > | |||||
| </TextField> | |||||
| variant="outlined" | |||||
| InputProps={ | |||||
| { | |||||
| style: { minHeight: '42.5px', maxHeight: '50vh', height: 'auto' }, | |||||
| } | |||||
| } | |||||
| /> | |||||
| </Grid> | </Grid> | ||||
| </Grid> | </Grid> | ||||
| ); | ); | ||||
| @@ -119,7 +122,7 @@ const StatusChangeDialog = (props) => { | |||||
| </Grid> | </Grid> | ||||
| <Grid item xs={12} md={9} lg={9}> | <Grid item xs={12} md={9} lg={9}> | ||||
| <FormLabel> | <FormLabel> | ||||
| <Typography variant="h5">{props.gazetteIssue + ", "}{props.issueNum + ", "}{props.issueDate}</Typography> | |||||
| <Typography variant="h5">{props.gazetteIssue + ", "}{props.issueNum + ", "}{props.issueDate}</Typography> | |||||
| </FormLabel> | </FormLabel> | ||||
| </Grid> | </Grid> | ||||
| </Grid> | </Grid> | ||||