Merge pull request #1273 from lbryio/redesign-fixes
fix: add back newestFirst/oldestFirst sorting to published/downloaded pages
This commit is contained in:
commit
229cca975c
1 changed files with 4 additions and 1 deletions
|
@ -44,6 +44,8 @@ class FileList extends React.PureComponent<Props, State> {
|
||||||
sortBy: 'dateNew',
|
sortBy: 'dateNew',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
(this: any).handleSortChanged = this.handleSortChanged.bind(this);
|
||||||
|
|
||||||
this.sortFunctions = {
|
this.sortFunctions = {
|
||||||
dateNew: fileInfos =>
|
dateNew: fileInfos =>
|
||||||
this.props.sortByHeight
|
this.props.sortByHeight
|
||||||
|
@ -180,7 +182,8 @@ class FileList extends React.PureComponent<Props, State> {
|
||||||
value={sortBy}
|
value={sortBy}
|
||||||
onChange={this.handleSortChanged}
|
onChange={this.handleSortChanged}
|
||||||
>
|
>
|
||||||
<option value="date">{__('Date')}</option>
|
<option value="dateNew">{__('Newest First')}</option>
|
||||||
|
<option value="dateOld">{__('Oldest First')}</option>
|
||||||
<option value="title">{__('Title')}</option>
|
<option value="title">{__('Title')}</option>
|
||||||
</FormField>
|
</FormField>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue