|
|
@@ -16,7 +16,6 @@ class MyDraftList extends React.Component {
|
|
|
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
|
- const { appContainer } = this.props;
|
|
|
|
|
|
this.state = {
|
|
|
drafts: [],
|
|
|
@@ -24,7 +23,7 @@ class MyDraftList extends React.Component {
|
|
|
activePage: 1,
|
|
|
totalDrafts: 0,
|
|
|
// [TODO: rename pageLimitationM to pageLimitationL]
|
|
|
- pagingLimit: appContainer.getConfig().pageLimitationM || 30,
|
|
|
+ pagingLimit: Infinity,
|
|
|
};
|
|
|
|
|
|
this.handlePage = this.handlePage.bind(this);
|