Skip to content

Commit aa72bb5

Browse files
ref(replays): fix timestamp for errors tab (#69418)
Fixes an edge case where we show `00:00.000` where everything else is `xx:xx` on the errors tab: <img width="830" alt="SCR-20240419-kouq" src="https://github.com/getsentry/sentry/assets/56095982/b52394e1-ee4b-481d-9914-d266d0288247"> After: <img width="586" alt="SCR-20240422-iijq" src="https://github.com/getsentry/sentry/assets/56095982/a122bc96-bde0-4d19-858a-1b4ab8309070">
1 parent b4e36f4 commit aa72bb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/views/replays/detail/errorList/errorTableCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ const ErrorTableCell = forwardRef<HTMLDivElement, Props>(
206206
<Cell {...columnProps} numeric>
207207
<ButtonWrapper>
208208
<TimestampButton
209-
format="mm:ss.SSS"
209+
format="mm:ss"
210210
onClick={event => {
211211
event.stopPropagation();
212212
onClickTimestamp(frame);

0 commit comments

Comments
 (0)