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