Skip to content

Commit

Permalink
fix(ui): fix consumer groups next page when empty (#977)
Browse files Browse the repository at this point in the history
close #976
  • Loading branch information
EdwinFajardoBarrera committed Jan 26, 2022
1 parent 6084b77 commit 83b003f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class ConsumerGroupList extends Root {
})
);
} else {
this.setState({ selectedCluster, consumerGroups: [], totalPageNumber: 0, loading: false });
this.setState({ selectedCluster, consumerGroups: [], totalPageNumber: 1, loading: false });
}
}

Expand Down

0 comments on commit 83b003f

Please sign in to comment.