diff --git a/frontend/web/components/mv/VariationValueInput.tsx b/frontend/web/components/mv/VariationValueInput.tsx index 945e714e4b70..ee883b292bbf 100644 --- a/frontend/web/components/mv/VariationValueInput.tsx +++ b/frontend/web/components/mv/VariationValueInput.tsx @@ -37,7 +37,11 @@ export const VariationValueInput: React.FC = ({ <> {Utils.renderWithPermission( canCreateFeature, - Constants.projectPermissions(ProjectPermission.CREATE_FEATURE), + readOnly + ? 'Variation values are defined at the feature level and cannot be changed per segment.' + : Constants.projectPermissions( + ProjectPermission.CREATE_FEATURE, + ),