Skip to content

Commit

Permalink
analytics add runId
Browse files Browse the repository at this point in the history
  • Loading branch information
Kostya Bats committed Apr 18, 2024
1 parent f15ae65 commit 9776fda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/admin/src/components/Analytics.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function MessagesTable({ messages, selectedRowId, onRowClick }) {
<TableRow key={rowId} sx={{ backgroundColor: rowBackground(event), cursor: "pointer" }}
onClick={() => onRowClick(event)}>
<TableCell type="icon"><EventTagsIcons event={event}/></TableCell>
<TableCell>{event.type === "commentary" ? event.message : ""}</TableCell>
<TableCell>{event.runIds && event.runIds.join(", ") + ": "}{event.type === "commentary" ? event.message : ""}</TableCell>
<TableCell><Tooltip title={unixTimeMsToLocalTime(event.timeUnixMs)}>
<span>{timeMsToDuration(event.relativeTimeMs)}</span>
</Tooltip></TableCell>
Expand Down

0 comments on commit 9776fda

Please sign in to comment.