Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
2900d85 to
f13321c
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 2900d85b73
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if (!Number.isFinite(startMs) || !Number.isFinite(endMs) || endMs <= startMs) { | ||
| continue; |
There was a problem hiding this comment.
Keep zero-duration entries visible in timeline
This guard now skips any entry where endMs <= startMs, which causes entries with identical start/end times to disappear from the timeline entirely. The create/edit flows currently allow users to submit equal start and end times, so these records can exist and were previously still rendered with a minimum block height; after this change they cannot be seen or clicked from the timeline view. Handle endMs === startMs as a tiny visual block instead of dropping it.
Useful? React with 👍 / 👎.
No description provided.