Skip to content

Commit

Permalink
[ISSUE-alibaba#5713] fix the query param lost when use enter press to…
Browse files Browse the repository at this point in the history
… search in Nacos 1.x.
  • Loading branch information
brotherlu-xcq committed May 21, 2021
1 parent e60204d commit 0bf97b7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
Expand Up @@ -1140,7 +1140,7 @@ class ConfigurationManagement extends React.Component {
this.dataId = dataId;
this.setState({ dataId });
}}
onPressEnter={() => this.getData()}
onPressEnter={() => this.selectAll()}
/>
</Form.Item>

Expand All @@ -1152,7 +1152,7 @@ class ConfigurationManagement extends React.Component {
dataSource={this.state.groups}
value={this.state.group}
onChange={this.setGroup.bind(this)}
onPressEnter={() => this.getData()}
onPressEnter={() => this.selectAll()}
hasClear
/>
</Form.Item>
Expand Down

0 comments on commit 0bf97b7

Please sign in to comment.