Skip to content

Commit 9d99953

Browse files
feat(replay): add tooltip to replay heading (#95462)
Clarify our sorting mechanism on the "replay" heading. Co-authored-by: Michelle Zhang <56095982+michellewzhang@users.noreply.github.com>
1 parent 7a3c0c1 commit 9d99953

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

static/app/components/replays/table/replayTableColumns.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,11 @@ export const ReplaySelectColumn: ReplayTableColumn = {
420420
};
421421

422422
export const ReplaySessionColumn: ReplayTableColumn = {
423-
Header: t('Replay'),
423+
Header: () => (
424+
<Tooltip title={t('By default, replays are sorted by time sent.')}>
425+
{t('Replay')}
426+
</Tooltip>
427+
),
424428
sortKey: 'started_at',
425429
width: 'minmax(150px, 1fr)',
426430
Component: ({replay}) => {

0 commit comments

Comments
 (0)