Skip to content

Commit 3316ff7

Browse files
committed
24h clock 😵‍💫
1 parent e6992ce commit 3316ff7

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

apps/webapp/app/components/logs/LogsTable.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ function getLevelBoxShadow(level: LogEntry["level"]): string {
5454
}
5555
}
5656

57-
58-
5957
export function LogsTable({
6058
logs,
6159
searchTerm,
@@ -162,7 +160,7 @@ export function LogsTable({
162160
boxShadow: getLevelBoxShadow(log.level),
163161
}}
164162
>
165-
<DateTimeAccurate date={log.triggeredTimestamp} />
163+
<DateTimeAccurate date={log.triggeredTimestamp} hour12={false} />
166164
</TableCell>
167165
<TableCell className="min-w-24">
168166
<TruncatedCopyableValue value={log.runId} />
@@ -233,11 +231,7 @@ function BlankState({ isLoading, onRefresh }: { isLoading?: boolean; onRefresh?:
233231
No logs match your filters. Try refreshing or modifying your filters.
234232
</Paragraph>
235233
<div className="flex items-center gap-2">
236-
<Button
237-
LeadingIcon={ArrowPathIcon}
238-
variant="tertiary/medium"
239-
onClick={handleRefresh}
240-
>
234+
<Button LeadingIcon={ArrowPathIcon} variant="tertiary/medium" onClick={handleRefresh}>
241235
Refresh
242236
</Button>
243237
</div>

0 commit comments

Comments
 (0)