Skip to content

Commit

Permalink
Merge pull request #191 from MickWang/master
Browse files Browse the repository at this point in the history
fix testnet node list pagination error
  • Loading branch information
MickWang authored Aug 19, 2019
2 parents 29c41d5 + d2e104f commit ed36a82
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/renderer/components/Node/NodeAuthorize/NodeList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,10 @@ export default {
pageNum: this.pagination.current - 1
}).then(res => {
this.requesting = false;
this.pagination.total = res;
const net = localStorage.getItem('net')
if(net !== 'TEST_NET') {
this.pagination.total = res;
}
})
},
showProportionTip() {
Expand Down

0 comments on commit ed36a82

Please sign in to comment.