diff --git a/frontend/app/components/Session_/OverviewPanel/OverviewPanel.tsx b/frontend/app/components/Session_/OverviewPanel/OverviewPanel.tsx index 1bcdf7088..ce5edcba1 100644 --- a/frontend/app/components/Session_/OverviewPanel/OverviewPanel.tsx +++ b/frontend/app/components/Session_/OverviewPanel/OverviewPanel.tsx @@ -76,7 +76,7 @@ function OverviewPanel({ issuesList }: { issuesList: Record[] }) { ]); return ( - + X-RAY
@@ -88,13 +88,14 @@ function OverviewPanel({ issuesList }: { issuesList: Record[] }) {
+
Select a debug option to visualize on timeline.
diff --git a/frontend/app/components/Session_/OverviewPanel/components/FeatureSelection/FeatureSelection.tsx b/frontend/app/components/Session_/OverviewPanel/components/FeatureSelection/FeatureSelection.tsx index bf4599e10..8d76a3070 100644 --- a/frontend/app/components/Session_/OverviewPanel/components/FeatureSelection/FeatureSelection.tsx +++ b/frontend/app/components/Session_/OverviewPanel/components/FeatureSelection/FeatureSelection.tsx @@ -22,7 +22,7 @@ interface Props { function FeatureSelection(props: Props) { const { list } = props; const features = [NETWORK, ERRORS, EVENTS, CLICKRAGE, PERFORMANCE]; - const disabled = list.length >= 3; + const disabled = list.length >= 5; return ( diff --git a/frontend/app/components/Session_/OverviewPanel/components/VerticalLine/VerticalLine.tsx b/frontend/app/components/Session_/OverviewPanel/components/VerticalLine/VerticalLine.tsx index 43a536f13..eb4d70e3a 100644 --- a/frontend/app/components/Session_/OverviewPanel/components/VerticalLine/VerticalLine.tsx +++ b/frontend/app/components/Session_/OverviewPanel/components/VerticalLine/VerticalLine.tsx @@ -8,7 +8,7 @@ interface Props { width?: string; } function VerticalLine(props: Props) { - const { left, className = 'border-gray-dark', height = '221px', width = '1px' } = props; + const { left, className = 'border-gray-dark', height = '100%', width = '1px' } = props; return
; }