mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Select page correctly in more channels modal (#7035)
This commit is contained in:
committed by
Harrison Healey
parent
d01261a228
commit
0f786a42d3
@@ -85,7 +85,7 @@ export default class MoreChannels extends React.Component {
|
||||
}
|
||||
|
||||
nextPage(page) {
|
||||
this.props.actions.getChannels(TeamStore.getCurrentId(), (page + 1) * CHANNELS_PER_PAGE, CHANNELS_PER_PAGE);
|
||||
this.props.actions.getChannels(TeamStore.getCurrentId(), page + 1, CHANNELS_PER_PAGE);
|
||||
}
|
||||
|
||||
handleJoin(channel, done) {
|
||||
|
||||
Reference in New Issue
Block a user