Skip to content

Commit d397015

Browse files
committed
EI-0 - Fix recent activity order
1 parent b80d2f7 commit d397015

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

endpoint-insights-ui/src/app/dashboard-component/dashboard-component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ export class DashboardComponent implements OnInit, AfterViewInit {
115115
durationMs: r.durationMs,
116116
startedBy: r.startedBy,
117117
status: r.status as DashboardTestActivity['status'],
118-
}));
118+
})).reverse();
119+
119120

120121
const mostRecentRun = data[0] ?? null;
121122

0 commit comments

Comments
 (0)