Skip to content

Commit

Permalink
fix(ui): Fix events error. Fixes #7320 (#7321)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Collins <alex_collins@intuit.com>
  • Loading branch information
alexec authored Dec 1, 2021
1 parent cf78ff6 commit 242360a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ui/src/app/workflows/components/events-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ export const EventsPanel = ({namespace, name, kind}: {namespace: string; name: s
<div className='columns small-5'>Message</div>
</div>
{events
.filter(e => e && e.lastTimestamp)
.sort((a, b) => -a.lastTimestamp.localeCompare(b.lastTimestamp))
.map(e => (
<div className='row argo-table-list__row' key={e.metadata.uid}>
Expand Down

0 comments on commit 242360a

Please sign in to comment.