{hasStack && Stack}
{hasExchange && (
@@ -98,10 +112,10 @@ export function LogEntry({ entry }: LogEntryProps) {
)}
- {entry.message}
+ {highlightText(entry.message, query)}
{hasStack && (
- {entry.stackTrace}
+ {highlightText(entry.stackTrace!, query)}
)}
{entry.mdc && Object.keys(entry.mdc).length > 0 && (
diff --git a/ui/src/pages/LogsTab/LogSearch.tsx b/ui/src/pages/LogsTab/LogSearch.tsx
index 2c932b21..50b6cc4e 100644
--- a/ui/src/pages/LogsTab/LogSearch.tsx
+++ b/ui/src/pages/LogsTab/LogSearch.tsx
@@ -187,7 +187,7 @@ export function LogSearch({ defaultApplication, defaultRouteId }: LogSearchProps
) : (
<>
{entries.map((entry, i) => (
-
+
))}
{!liveTail && hasMore && (