瀏覽代碼

fix The cursor is moved up.

master
Anna Ho 1 年之前
父節點
當前提交
aea423335c
共有 1 個檔案被更改,包括 12 行新增9 行删除
  1. +12
    -9
      src/pages/PublicNotice/Details_GLD/StatusChangeDialog.js

+ 12
- 9
src/pages/PublicNotice/Details_GLD/StatusChangeDialog.js 查看文件

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


Loading…
取消
儲存