diff --git a/frontend/src/scenes/experimentation/FeatureFlags.tsx b/frontend/src/scenes/experimentation/FeatureFlags.tsx index 94a055baf6e..08c96497b96 100644 --- a/frontend/src/scenes/experimentation/FeatureFlags.tsx +++ b/frontend/src/scenes/experimentation/FeatureFlags.tsx @@ -11,6 +11,7 @@ import { createdAtColumn, createdByColumn } from 'lib/components/Table' import { FeatureFlagGroupType, FeatureFlagType } from '~/types' import { router } from 'kea-router' import { LinkButton } from 'lib/components/LinkButton' +import { CopyToClipboardInline } from 'lib/components/CopyToClipboard' export function FeatureFlags(): JSX.Element { const { featureFlags, featureFlagsLoading } = useValues(featureFlagsLogic) @@ -27,14 +28,18 @@ export function FeatureFlags(): JSX.Element { sorter: (a: FeatureFlagType, b: FeatureFlagType) => ('' + a.key).localeCompare(b.key), render: function Render(_: string, featureFlag: FeatureFlagType) { return ( - <> - {!featureFlag.active && ( - - - - )} - {featureFlag.key} - +
e.stopPropagation()}> + + <> + {!featureFlag.active && ( + + + + )} + {featureFlag.key} + + +
) }, },