Skip to content

Commit

Permalink
Merge pull request alibaba#266 from jameslcj/hotfix_ListenQueryPagina…
Browse files Browse the repository at this point in the history
…tion

fix the bug of pagination in listeningToQuery page
  • Loading branch information
jameslcj authored Nov 14, 2018
2 parents 746035c + d866a62 commit 5a0dc77
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions console/src/main/resources/static/build.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#! /usr/bin/env node
/*
* Copyright 1999-2018 Alibaba Group Holding Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion console/src/main/resources/static/index.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion console/src/main/resources/static/index.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ListeningToQuery extends React.Component {
}
self.setState({
dataSource: dataSoureTmp || [],
total: data.length
total: dataSoureTmp.length || 0
});
}
},
Expand Down

0 comments on commit 5a0dc77

Please sign in to comment.