Skip to content

Commit 665873b

Browse files
author
dushixiang
committed
fixed #42 修复【生产消息后再点开, ok按钮一直转圈】。
1 parent 9c39993 commit 665873b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/web/src/components/TopicInfo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class TopicInfo extends Component {
6565

6666
handleSendMessage = async (values) => {
6767
this.setState({
68-
'modalConfirmLoading': true
68+
modalConfirmLoading: true
6969
})
7070
try {
7171
let offset = await request.post(`/topics/${this.state.topic}/data?clusterId=${this.state.clusterId}`, values);
@@ -76,7 +76,7 @@ class TopicInfo extends Component {
7676
} finally {
7777
this.setState({
7878
modalVisible: false,
79-
modalConfirmLoading: true
79+
modalConfirmLoading: false
8080
});
8181
}
8282

0 commit comments

Comments
 (0)