[ISSUE #6510] fix the F1 cannot full screen. (#6513)

This commit is contained in:
brotherlu-xcq 2021-08-02 09:42:43 +08:00 committed by GitHub
parent 2ff8da4832
commit 561b0e6f71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -368,7 +368,7 @@ class ConfigDetail extends React.Component {
<Input htmlType={'text'} readOnly {...init('md5')} />
</FormItem>
<FormItem label={locale.configuration} required>
<div className={editorClass} id="container" style={{ height: 500 }} />
<div className={editorClass} id="container" style={{ minHeight: 500 }} />
</FormItem>
</Form>
<Row>

View File

@ -595,7 +595,7 @@ class ConfigEditor extends React.Component {
</div>
}
>
<div id="container" className={editorClass} style={{ height: 450 }} />
<div id="container" className={editorClass} style={{ minHeight: 450 }} />
</Form.Item>
</Form>
<Row>

View File

@ -592,7 +592,7 @@ class NewConfig extends React.Component {
}
required
>
<div id={'container'} className={editorClass} style={{ height: 450 }} />
<div id={'container'} className={editorClass} style={{ minHeight: 450 }} />
</FormItem>
<FormItem label=" ">

File diff suppressed because one or more lines are too long