1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

#25 removed issues sort

This commit is contained in:
Fedor Katurov 2021-03-10 16:09:48 +07:00
parent f66f09572f
commit bb6c853d3c

View file

@ -38,7 +38,6 @@ const BorisStatsGit: FC<IProps> = ({ stats }) => {
{stats.issues
.filter(el => !el.pull_request)
.slice(0, 10)
.sort(el => (el.state === 'open' ? 1 : -1))
.map(data => (
<BorisStatsGitCard data={data} key={data.id} />
))}