Fix #986 published claims out of order #1018

Merged
Jeremy1026 merged 7 commits from fix/986-published-claims-out-of-order into master 2018-02-27 05:55:31 +01:00
Showing only changes of commit 34b6ef674b - Show all commits

View file

@ -27,7 +27,6 @@ class FileList extends React.PureComponent {
},
dateOld(fileInfos) {
return fileInfos.slice().sort((fileInfo1, fileInfo2) => {
console.log(fileInfo1);
const height1 = fileInfo1.height
const height2 = fileInfo2.height
if (height1 < height2) {
@ -87,8 +86,6 @@ class FileList extends React.PureComponent {
const { sortBy } = this.state;
const content = [];
console.log(sortBy);
this._sortFunctions[sortBy](fileInfos).forEach(fileInfo => {
const uriParams = {};