Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Solves issue: #10316 Sticky Ticket for a better UX #10333

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 5 additions & 3 deletions components/event/EventCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,10 @@ export default function EventCard({ manage, event, usernames }) {
);

return (
<li className="flex flex-row gap-8 w-full">
{manage ? edit(event) : item(event)}
</li>
<div className="sticky top-0">
<li className="flex flex-row gap-8 w-full">
{manage ? edit(event) : item(event)}
</li>
</div>
);
}
Loading