Fix #986 published claims out of order #1018
1 changed files with 0 additions and 3 deletions
|
@ -27,7 +27,6 @@ class FileList extends React.PureComponent {
|
||||||
},
|
},
|
||||||
dateOld(fileInfos) {
|
dateOld(fileInfos) {
|
||||||
return fileInfos.slice().sort((fileInfo1, fileInfo2) => {
|
return fileInfos.slice().sort((fileInfo1, fileInfo2) => {
|
||||||
console.log(fileInfo1);
|
|
||||||
const height1 = fileInfo1.height
|
const height1 = fileInfo1.height
|
||||||
const height2 = fileInfo2.height
|
const height2 = fileInfo2.height
|
||||||
if (height1 < height2) {
|
if (height1 < height2) {
|
||||||
|
@ -87,8 +86,6 @@ class FileList extends React.PureComponent {
|
||||||
const { sortBy } = this.state;
|
const { sortBy } = this.state;
|
||||||
const content = [];
|
const content = [];
|
||||||
|
|
||||||
console.log(sortBy);
|
|
||||||
|
|
||||||
this._sortFunctions[sortBy](fileInfos).forEach(fileInfo => {
|
this._sortFunctions[sortBy](fileInfos).forEach(fileInfo => {
|
||||||
const uriParams = {};
|
const uriParams = {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue