Skip to content

Commit

Permalink
Fix secondary metric display for no-code web experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber committed Dec 20, 2024
1 parent 8035e01 commit 822faf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/experiments/experimentLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,7 @@ export const experimentLogic = kea<experimentLogicType>([
}

const variantsWithResults: TabularSecondaryMetricResults[] = []
experiment?.parameters?.feature_flag_variants?.forEach((variant) => {
experiment?.feature_flag?.filters?.multivariate?.variants?.forEach((variant) => {
const metricResults: SecondaryMetricResult[] = []
experiment?.secondary_metrics?.forEach((metric, idx) => {
let result
Expand Down

0 comments on commit 822faf7

Please sign in to comment.