diff --git a/frontend/app/components/shared/DevTools/JumpButton/JumpButton.tsx b/frontend/app/components/shared/DevTools/JumpButton/JumpButton.tsx
index 1e14336bf..99b87dd9e 100644
--- a/frontend/app/components/shared/DevTools/JumpButton/JumpButton.tsx
+++ b/frontend/app/components/shared/DevTools/JumpButton/JumpButton.tsx
@@ -13,6 +13,11 @@ function JumpButton(props: Props) {
const { tooltip } = props;
return (
+ {props.time ? (
+
+ {shortDurationFromMs(props.time)}
+
+ ) : null}
- {props.time ? (
-
- {shortDurationFromMs(props.time)}
-
- ) : null}
);
diff --git a/frontend/app/player/web/types/longTask.ts b/frontend/app/player/web/types/longTask.ts
index de5d05360..bb3909a89 100644
--- a/frontend/app/player/web/types/longTask.ts
+++ b/frontend/app/player/web/types/longTask.ts
@@ -6,6 +6,7 @@ export interface ILongAnimationTask {
blockingDuration: number;
firstUIEventTimestamp: number;
startTime: number;
+ time: number;
scripts: [
{
name: string;
@@ -36,6 +37,7 @@ export const getLongTask = (msg: LongAnimationTask): ILongAnimationTask => {
firstUIEventTimestamp: msg.firstUIEventTimestamp,
startTime: msg.startTime,
scripts,
- isRed: msg.blockingDuration > 50
+ isRed: msg.blockingDuration > 50,
+ time: msg.startTime,
});
}