Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function TimelineTrackContent({
});

return (
<button
<div
className="size-full"
onClick={(event) => {
if (shouldIgnoreClick?.()) return;
Expand All @@ -74,7 +74,6 @@ export function TimelineTrackContent({
event.preventDefault();
onTrackMouseDown?.(event);
}}
type="button"
>
<div className="relative h-full min-w-full">
{track.elements.length === 0 ? (
Expand Down Expand Up @@ -107,6 +106,6 @@ export function TimelineTrackContent({
})
)}
</div>
</button>
</div>
);
}