Fixed sort after abandoning claim
This commit is contained in:
parent
fa91f3cea5
commit
c8cad17f97
1 changed files with 4 additions and 4 deletions
|
@ -15,8 +15,8 @@ class FileList extends React.PureComponent {
|
||||||
this._sortFunctions = {
|
this._sortFunctions = {
|
||||||
dateNew: fileInfos =>
|
dateNew: fileInfos =>
|
||||||
fileInfos.slice().sort((fileInfo1, fileInfo2) => {
|
fileInfos.slice().sort((fileInfo1, fileInfo2) => {
|
||||||
const height1 = this.props.claimsById[fileInfo1.claim_id].height;
|
const height1 = this.props.claimsById[fileInfo1.claim_id] ? this.props.claimsById[fileInfo1.claim_id].height : 0;
|
||||||
const height2 = this.props.claimsById[fileInfo2.claim_id].height;
|
const height2 = this.props.claimsById[fileInfo2.claim_id] ? this.props.claimsById[fileInfo2.claim_id].height : 0;
|
||||||
if (height1 > height2) {
|
if (height1 > height2) {
|
||||||
return -1;
|
return -1;
|
||||||
} else if (height1 < height2) {
|
} else if (height1 < height2) {
|
||||||
|
@ -26,8 +26,8 @@ class FileList extends React.PureComponent {
|
||||||
}),
|
}),
|
||||||
dateOld: fileInfos =>
|
dateOld: fileInfos =>
|
||||||
fileInfos.slice().sort((fileInfo1, fileInfo2) => {
|
fileInfos.slice().sort((fileInfo1, fileInfo2) => {
|
||||||
const height1 = this.props.claimsById[fileInfo1.claim_id].height;
|
const height1 = this.props.claimsById[fileInfo1.claim_id] ? this.props.claimsById[fileInfo1.claim_id].height : 999999;
|
||||||
const height2 = this.props.claimsById[fileInfo2.claim_id].height;
|
const height2 = this.props.claimsById[fileInfo2.claim_id] ? this.props.claimsById[fileInfo2.claim_id].height : 999999;
|
||||||
if (height1 < height2) {
|
if (height1 < height2) {
|
||||||
return -1;
|
return -1;
|
||||||
} else if (height1 > height2) {
|
} else if (height1 > height2) {
|
||||||
|
|
Loading…
Reference in a new issue