We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb4c866 commit 60a9185Copy full SHA for 60a9185
sdk/feature-management/src/telemetry/featureEvaluationEvent.ts
@@ -21,7 +21,7 @@ export function createFeatureEvaluationEventProperties(result: EvaluationResult)
21
const eventProperties = {
22
[VERSION]: EVALUATION_EVENT_VERSION,
23
[FEATURE_NAME]: result.feature ? result.feature.id : "",
24
- [ENABLED]: result.enabled.toString(),
+ [ENABLED]: result.enabled ? "True" : "False",
25
// Ensure targetingId is string so that it will be placed in customDimensions
26
[TARGETING_ID]: result.targetingId ? result.targetingId.toString() : "",
27
[VARIANT]: result.variant ? result.variant.name : "",
0 commit comments