-
-
Notifications
You must be signed in to change notification settings - Fork 730
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: implement event grouping in the event timeline #8254
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Manifest Files |
18fffab
to
39d841c
Compare
components, | ||
...props | ||
}: ComponentProps<typeof ReactMarkdown>) => ( | ||
<ReactMarkdown components={{ a: LinkRenderer, ...components }} {...props} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For anyone coming across this: This was part of an experiment where we customized em
components within our markdown renderer, in this case specifically for the timeline event tooltip.
Even though we ended up choosing a different approach, we still see this as an improvement (scouting) that could be helpful for future cases where we need to override specific components in the same way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome!
https://linear.app/unleash/issue/2-2663/implement-event-grouping-when-multiple-events-happen-in-a-short-period
This PR introduces a grouping logic for timeline events, enhancing the way events are displayed when they occur close to each other.
We also updated and refactored components to support handling groups of events rather than individual events.
Also includes some minor code cleanups and optimizations as part of general refactoring efforts (scouting).