diff --git a/frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-breakdown-edit--light.png b/frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-breakdown-edit--light.png index 168f812ecd62d..b0c4487104da4 100644 Binary files a/frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-breakdown-edit--light.png and b/frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-breakdown-edit--light.png differ diff --git a/frontend/src/scenes/persons/RelatedFeatureFlags.tsx b/frontend/src/scenes/persons/RelatedFeatureFlags.tsx index 2b673f455c386..40599b218a591 100644 --- a/frontend/src/scenes/persons/RelatedFeatureFlags.tsx +++ b/frontend/src/scenes/persons/RelatedFeatureFlags.tsx @@ -1,4 +1,5 @@ -import { LemonInput, LemonSelect, LemonSnack, LemonTable, LemonTag } from '@posthog/lemon-ui' +import { IconInfo } from '@posthog/icons' +import { LemonInput, LemonSelect, LemonSnack, LemonTable, LemonTag, Link, Tooltip } from '@posthog/lemon-ui' import { useActions, useValues } from 'kea' import { LemonTableColumns } from 'lib/lemon-ui/LemonTable' import { LemonTableLink } from 'lib/lemon-ui/LemonTable/LemonTableLink' @@ -89,7 +90,33 @@ export function RelatedFeatureFlags({ distinctId, groups }: Props): JSX.Element }, }, { - title: 'Match evaluation', + title: ( +
+
Match evaluation
+ +
+ This column simulates the feature flag evaluation based on the selected distinct ID, + current properties, and groups associated with the user. If the actual flag value + differs, it could be due to different inputs used during evaluation. +
+
+ If you are using local flag evaluation, you must ensure that you provide any person + properties, groups, or group properties used to evaluate the release conditions of + the flag. Read more in the{' '} + + documentation. + +
+
+ } + closeDelayMs={200} + > + + + + ), dataIndex: 'evaluation', width: 150, render: function Render(_, featureFlag: RelatedFeatureFlag) {