diff --git a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/FeatureResultInfoPopoverCell.tsx b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/FeatureResultInfoPopoverCell.tsx index f937b2cf06..4dc19c677f 100644 --- a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/FeatureResultInfoPopoverCell.tsx +++ b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/FeatureResultInfoPopoverCell.tsx @@ -76,6 +76,29 @@ export const FeatureResultInfoPopoverCell = ({ }, ], }, + { + name: 'flexibleRollout', + id: 'strategy-id', + parameters: {}, + result: false, + segments: [ + { + result: false, + id: 6, + name: 'my-segment', + constraints: [ + { + result: false, + contextName: 'appName', + operator: 'IN', + caseInsensitive: false, + inverted: false, + values: ['MyApp2'], + }, + ], + }, + ], + }, ]; if (!feature) { diff --git a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/PlaygroundResultSegmentExecution/PlaygroundResultSegmentExecution.tsx b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/PlaygroundResultSegmentExecution/PlaygroundResultSegmentExecution.tsx index c20fa7ffe4..2954cad422 100644 --- a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/PlaygroundResultSegmentExecution/PlaygroundResultSegmentExecution.tsx +++ b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/PlaygroundResultSegmentExecution/PlaygroundResultSegmentExecution.tsx @@ -60,7 +60,7 @@ export const PlaygroundResultSegmentExecution = ({ if (!segments) return null; return ( <> - {segments.map(segment => ( + {segments.map((segment, index) => ( @@ -95,7 +95,10 @@ export const PlaygroundResultSegmentExecution = ({ constraints={segment.constraints} /> - + } + /> ))}