remove recovered services and drop reordering feature (#1829)

This commit is contained in:
Matt Hill
2022-09-26 13:37:41 -06:00
committed by Aiden McClelland
parent 35b220d7a5
commit 2ddd38796d
21 changed files with 35 additions and 440 deletions

View File

@@ -88,7 +88,10 @@ export class FilterPackagesPipe implements PipeTransform {
return packages
.filter(p => category === 'all' || p.categories.includes(category))
.sort((a, b) => {
return a['published-at'] > b['published-at'] ? -1 : 1
return (
new Date(b['published-at']).valueOf() -
new Date(a['published-at']).valueOf()
)
})
}
}