Quellcode durchsuchen

fix The cursor is moved up.

master
Anna Ho vor 1 Jahr
Ursprung
Commit
aea423335c
1 geänderte Dateien mit 12 neuen und 9 gelöschten Zeilen
  1. +12
    -9
      src/pages/PublicNotice/Details_GLD/StatusChangeDialog.js

+ 12
- 9
src/pages/PublicNotice/Details_GLD/StatusChangeDialog.js Datei anzeigen

@@ -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>


Laden…
Abbrechen
Speichern