fix: change overflow hidden to visible in configuration query div (#9595)
This commit is contained in:
parent
44e723b027
commit
2ec89ae50b
@ -192,7 +192,7 @@ class NameSpaceList extends React.Component {
|
|||||||
className={namespaceList.length ? 'namespacewrapper' : ''}
|
className={namespaceList.length ? 'namespacewrapper' : ''}
|
||||||
style={{
|
style={{
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flex-wrap: 'wrap',
|
flexWrap: 'wrap',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
marginTop: 8,
|
marginTop: 8,
|
||||||
marginBottom: 16,
|
marginBottom: 16,
|
||||||
|
@ -1113,8 +1113,8 @@ class ConfigurationManagement extends React.Component {
|
|||||||
style={{
|
style={{
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
marginTop: 10,
|
marginTop: 10,
|
||||||
height: this.state.isAdvancedQuery ? 'auto' : 42,
|
height: 'auto',
|
||||||
overflow: 'hidden',
|
overflow: 'visible',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Form inline>
|
<Form inline>
|
||||||
@ -1207,7 +1207,16 @@ class ConfigurationManagement extends React.Component {
|
|||||||
</Button>
|
</Button>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<br />
|
<br />
|
||||||
<Form.Item style={this.inApp ? { display: 'none' } : {}} label={locale.application}>
|
<Form.Item
|
||||||
|
style={
|
||||||
|
this.inApp
|
||||||
|
? { display: 'none' }
|
||||||
|
: this.state.isAdvancedQuery
|
||||||
|
? {}
|
||||||
|
: { display: 'none' }
|
||||||
|
}
|
||||||
|
label={locale.application}
|
||||||
|
>
|
||||||
<Input
|
<Input
|
||||||
htmlType={'text'}
|
htmlType={'text'}
|
||||||
placeholder={locale.app1}
|
placeholder={locale.app1}
|
||||||
@ -1217,7 +1226,10 @@ class ConfigurationManagement extends React.Component {
|
|||||||
onPressEnter={() => this.getData()}
|
onPressEnter={() => this.getData()}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item label={locale.tags}>
|
<Form.Item
|
||||||
|
style={this.state.isAdvancedQuery ? {} : { display: 'none' }}
|
||||||
|
label={locale.tags}
|
||||||
|
>
|
||||||
<Select
|
<Select
|
||||||
style={{ width: 200 }}
|
style={{ width: 200 }}
|
||||||
size="medium"
|
size="medium"
|
||||||
|
Loading…
Reference in New Issue
Block a user