Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion client/src/pages/AnalyticsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,9 @@ export default function AnalyticsPage() {
{errors.slice(0, 20).map((e) => (
<TableRow key={e.id}>
<TableCell className="pl-4 text-xs">{e.platform}</TableCell>
<TableCell className="text-xs max-w-[200px] truncate">{e.error}</TableCell>
<TableCell className="text-xs max-w-[200px] truncate">
<HoverTooltip text={e.error ?? ''} side="top">{e.error}</HoverTooltip>
</TableCell>
<TableCell className="text-right text-xs text-muted-foreground tabular-nums pr-4">
{formatSqliteUtcToLocalTime(e.createdAt, { hour: '2-digit', minute: '2-digit' })}
</TableCell>
Expand Down
Loading