You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR adds the conversation creation timestamp (Created on) to the conversation overview tab, directly under the title and in the same row as the tags. This matches the list page's display and avoids portraying the timestamp as the exact 'recording started' time (which can diverge if a participant sits on the mic-permission screen).
Holding until after the release, and one real problem to fix first: this reads created_at, which is when the conversation row was created, not when recording started. A participant who scans the QR and sits on the mic-permission screen for ten minutes gets a 'recording started' time that is ten minutes early. Either derive the value from the telemetry recording_started_at (the monitor drilldown timeline already uses it) or relabel the field to 'Created on' so it says what it shows.
dembrane-sam-bot
changed the title
feat(frontend): add date recording started to conversation overview
feat(frontend): add Created on timestamp to conversation overview
Jul 30, 2026
You're 100% right. created_at represents when the conversation row was created (e.g., when the QR code was scanned), not when recording actually started. Since recording_started_at is transient telemetry in Redis that isn't persisted in Postgres for historical/completed conversations, keeping the UI label as Created on is the correct way to accurately show what the timestamp represents.
I have updated the PR title and description to align with 'Created on' rather than 'Recording started' to make this clear. Ready for your review whenever the release is out!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds the conversation creation timestamp (Created on) to the conversation overview tab, directly under the title and in the same row as the tags. This matches the list page's display and avoids portraying the timestamp as the exact 'recording started' time (which can diverge if a participant sits on the mic-permission screen).