Skip to content

Commit

Permalink
fix(experiment): fix funnel step bg color (#21198)
Browse files Browse the repository at this point in the history
  • Loading branch information
jurajmajerik authored Mar 28, 2024
1 parent 597144d commit c3483ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/experiments/ExperimentPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ export function MetricDisplay({ filters }: { filters?: FilterType }): JSX.Elemen
.map((event: ActionFilterType, idx: number) => (
<div key={idx} className="mb-2">
<div className="flex mb-1">
<div className="shrink-0 w-6 h-6 mr-2 font-bold text-center text-primary-alt bg-white border rounded">
<div className="shrink-0 w-6 h-6 mr-2 font-bold text-center text-primary-alt bg-light border rounded">
{experimentInsightType === InsightType.FUNNELS ? (event.order || 0) + 1 : idx + 1}
</div>
<b>
Expand Down

0 comments on commit c3483ac

Please sign in to comment.