We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.toLocalString()
1 parent 0df7313 commit 8059acfCopy full SHA for 8059acf
site/src/pages/AIGovernancePage/RequestLogsPage/RequestLogsRow/RequestLogsRow.tsx
@@ -41,7 +41,9 @@ export const RequestLogsRow: FC<RequestLogsRowProps> = ({ interception }) => {
41
)}
42
</div>
43
</TableCell>
44
- <TableCell>{interception.started_at}</TableCell>
+ <TableCell>
45
+ {new Date(interception.started_at).toLocaleString()}
46
+ </TableCell>
47
<TableCell>{interception.initiator_id}</TableCell>
48
<TableCell>
49
{hasPrompt && interception.user_prompts[0].prompt}
0 commit comments