File tree Expand file tree Collapse file tree 1 file changed +34
-34
lines changed
static/app/components/replays/diff Expand file tree Collapse file tree 1 file changed +34
-34
lines changed Original file line number Diff line number Diff line change @@ -31,47 +31,47 @@ interface BeforeAfterProps {
31
31
32
32
export function Before ( { children, offset, startTimestampMs} : BeforeAfterProps ) {
33
33
return (
34
- < Tooltip
35
- title = {
36
- < LeftAligned >
37
- { t ( 'The server-rendered page' ) }
38
- < div >
39
- < ReplayTooltipTime
40
- timestampMs = { startTimestampMs + offset }
41
- startTimestampMs = { startTimestampMs }
42
- />
43
- </ div >
44
- </ LeftAligned >
45
- }
46
- >
47
- < Label >
34
+ < Label >
35
+ < Tooltip
36
+ title = {
37
+ < LeftAligned >
38
+ { t ( 'The server-rendered page' ) }
39
+ < div >
40
+ < ReplayTooltipTime
41
+ timestampMs = { startTimestampMs + offset }
42
+ startTimestampMs = { startTimestampMs }
43
+ / >
44
+ </ div >
45
+ </ LeftAligned >
46
+ }
47
+ >
48
48
{ t ( 'Before' ) }
49
- { children }
50
- </ Label >
51
- </ Tooltip >
49
+ </ Tooltip >
50
+ { children }
51
+ </ Label >
52
52
) ;
53
53
}
54
54
55
55
export function After ( { children, offset, startTimestampMs} : BeforeAfterProps ) {
56
56
return (
57
- < Tooltip
58
- title = {
59
- < LeftAligned >
60
- { t ( 'After React re-rendered the page, and reported a hydration error' ) }
61
- < div >
62
- < ReplayTooltipTime
63
- timestampMs = { startTimestampMs + offset }
64
- startTimestampMs = { startTimestampMs }
65
- />
66
- </ div >
67
- </ LeftAligned >
68
- }
69
- >
70
- < Label >
57
+ < Label >
58
+ < Tooltip
59
+ title = {
60
+ < LeftAligned >
61
+ { t ( 'After React re-rendered the page, and reported a hydration error' ) }
62
+ < div >
63
+ < ReplayTooltipTime
64
+ timestampMs = { startTimestampMs + offset }
65
+ startTimestampMs = { startTimestampMs }
66
+ / >
67
+ </ div >
68
+ </ LeftAligned >
69
+ }
70
+ >
71
71
{ t ( 'After' ) }
72
- { children }
73
- </ Label >
74
- </ Tooltip >
72
+ </ Tooltip >
73
+ { children }
74
+ </ Label >
75
75
) ;
76
76
}
77
77
You can’t perform that action at this time.
0 commit comments