fixes
parent
bb8cdf13a2
commit
c86663518e
|
@ -552,7 +552,7 @@ export default class Report extends Route {
|
|||
locked: !!score.locked,
|
||||
totalModerations: moderations?.length > 0 ? moderations.length : 0,
|
||||
inquiries: hardInquiries?.length > 0 ? hardInquiries.sort((a, b) => new Date(a.date).getTime() - new Date(b.date).getTime()) : [],
|
||||
softInquiries: softInquiries?.length > 0 ? softInquiries : [],
|
||||
softInquiries: softInquiries?.length > 0 ? softInquiries.sort((a, b) => new Date(a.date).getTime() - new Date(b.date).getTime()) : [],
|
||||
historical: historical ?? [],
|
||||
lastUpdated: score.lastUpdate,
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue