File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/routes/tracker/[org]/[repo] Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ export async function load({ params }) {
4141 }
4242 return true ;
4343 } )
44- . toSorted ( ( a , b ) => new Date ( b . created_at ) . getTime ( ) - new Date ( a . created_at ) . getTime ( ) )
44+ . toSorted ( ( a , b ) => new Date ( b . updated_at ) . getTime ( ) - new Date ( a . updated_at ) . getTime ( ) )
4545 . slice ( 0 , 10 ) ,
4646 issues : unfilteredIssues
4747 ?. filter (
4848 ( { user, pull_request } ) => ! pull_request && membersNames . includes ( user ?. login ?? "" )
4949 )
50- . toSorted ( ( a , b ) => new Date ( b . created_at ) . getTime ( ) - new Date ( a . created_at ) . getTime ( ) )
50+ . toSorted ( ( a , b ) => new Date ( b . updated_at ) . getTime ( ) - new Date ( a . updated_at ) . getTime ( ) )
5151 . slice ( 0 , 10 )
5252 } ;
5353}
Original file line number Diff line number Diff line change 2323{#snippet list (title : string , items : Item [], itemToLink : (item : any ) => string )}
2424 <!-- {#snippet list<T extends Item>(title: string, items: T[], itemToLink: (item: T) => string)} -->
2525 <div >
26- <h2 class ="mt-12 mb-2 text-3xl font-semibold tracking-tight" >{title }</h2 >
26+ <h2 class ="mt-12 mb-4 text-3xl font-semibold tracking-tight" >{title }</h2 >
2727 {#each items as item , i (item .id )}
2828 {#if i > 0 }
2929 <Separator class =" my-1" />
You can’t perform that action at this time.
0 commit comments