You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-19 05:22:13 +03:00
Specify default number of members to load
This commit is contained in:
@@ -15,7 +15,6 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { _t } from '../../../languageHandler';
|
import { _t } from '../../../languageHandler';
|
||||||
import Promise from 'bluebird';
|
|
||||||
import sdk from '../../../index';
|
import sdk from '../../../index';
|
||||||
import { groupMemberFromApiObject } from '../../../groups';
|
import { groupMemberFromApiObject } from '../../../groups';
|
||||||
import GeminiScrollbar from 'react-gemini-scrollbar';
|
import GeminiScrollbar from 'react-gemini-scrollbar';
|
||||||
@@ -36,7 +35,8 @@ export default withMatrixClient(React.createClass({
|
|||||||
return {
|
return {
|
||||||
fetching: false,
|
fetching: false,
|
||||||
members: null,
|
members: null,
|
||||||
}
|
truncateAt: INITIAL_LOAD_NUM_MEMBERS,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillMount: function() {
|
componentWillMount: function() {
|
||||||
@@ -74,7 +74,7 @@ export default withMatrixClient(React.createClass({
|
|||||||
|
|
||||||
_showFullMemberList: function() {
|
_showFullMemberList: function() {
|
||||||
this.setState({
|
this.setState({
|
||||||
truncateAt: -1
|
truncateAt: -1,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user