diff --git a/public/app/features/explore/Logs.tsx b/public/app/features/explore/Logs.tsx index 017483cccd4..76c1bd7fd33 100644 --- a/public/app/features/explore/Logs.tsx +++ b/public/app/features/explore/Logs.tsx @@ -60,15 +60,15 @@ function Row({ const previewHighlights = highlighterExpressions && !_.isEqual(highlighterExpressions, row.searchWords); const highlights = previewHighlights ? highlighterExpressions : row.searchWords; const needsHighlighter = highlights && highlights.length > 0; - const highlightClassName = classnames('logs-row-match-highlight', { - 'logs-row-match-highlight--preview': previewHighlights, + const highlightClassName = classnames('logs-row__match-highlight', { + 'logs-row__match-highlight--preview': previewHighlights, }); return (