Skip to content

Commit

Permalink
Merge pull request #31 from metrico/develop
Browse files Browse the repository at this point in the history
fix: sort items (first is fresh)
  • Loading branch information
RFbkak37y3kIY authored Jul 27, 2023
2 parents 118cd03 + c9ec1ef commit 9af66c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SimplePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function formatingDataAndSortIt(data: any) {
const a = itemA.Time;
const b = itemB.Time;
return a < b ? -1 : a > b ? 1 : 0;
}).reverse();
});
return sortData;
}

Expand Down

0 comments on commit 9af66c6

Please sign in to comment.