diff --git a/ui/src/pages/LogsTab/LogEntry.tsx b/ui/src/pages/LogsTab/LogEntry.tsx index 2283cfe1..e61cde44 100644 --- a/ui/src/pages/LogsTab/LogEntry.tsx +++ b/ui/src/pages/LogsTab/LogEntry.tsx @@ -2,6 +2,7 @@ import { useState, useCallback } from 'react'; import { useNavigate } from 'react-router'; import { Badge } from '@cameleer/design-system'; import type { LogEntryResponse } from '../../api/queries/logs'; +import { attributeBadgeColor } from '../../utils/attribute-color'; import styles from './LogEntry.module.css'; function levelColor(level: string): string { @@ -63,7 +64,7 @@ export function LogEntry({ entry }: LogEntryProps) {
{formatTime(entry.timestamp)} {entry.level} - {entry.application && } + {entry.application && } {abbreviateLogger(entry.loggerName)}