This commit is contained in:
Josh Hawkins 2025-10-24 06:18:44 -05:00
parent e88936bb7f
commit 9ab5b2a0d7

View File

@ -461,7 +461,9 @@ function EventList({
className="flex items-center gap-2 text-sm font-medium"
onClick={(e) => {
e.stopPropagation();
handleObjectSelect(selectedObjectId ? undefined : event);
handleObjectSelect(
event.id == selectedObjectId ? undefined : event,
);
}}
role="button"
>
@ -482,7 +484,7 @@ function EventList({
<span>{getTranslatedLabel(event.label)}</span>
</div>
</div>
<div className="flex flex-1 flex-row justify-end">
<div className="mr-2 flex flex-1 flex-row justify-end">
<EventMenu
event={event}
config={config}