Skip to content

Commit

Permalink
no highlight for latest now we show time
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Apr 26, 2024
1 parent b6c126c commit 3869233
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/toolbar/debug/EventDebugMenu.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import clsx from 'clsx'
import { useActions, useValues } from 'kea'
import { AnimatedCollapsible } from 'lib/components/AnimatedCollapsible'
import { TZLabel } from 'lib/components/TZLabel'
Expand Down Expand Up @@ -62,10 +61,10 @@ export const EventDebugMenu = (): JSX.Element => {
<ToolbarMenu.Body>
<div className="flex flex-col space-y-1">
{filteredEvents.length ? (
filteredEvents.map((e, i) => {
filteredEvents.map((e) => {
return (
<div
className={clsx('-mx-1 py-1 px-2 cursor-pointer', i === 0 && 'bg-mark')}
className="-mx-1 py-1 px-2 cursor-pointer"
key={e.uuid}
onClick={() => {
expandedEvent === e.uuid ? markExpanded(null) : markExpanded(e.uuid || null)
Expand Down

0 comments on commit 3869233

Please sign in to comment.