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 cb3299a commit 70fb36eCopy full SHA for 70fb36e
src/components/v2/values/chartValuesDiff/ChartValuesView.component.tsx
@@ -567,9 +567,10 @@ export const ChartValuesSelector = ({
567
`${option.value.id} ${option.value.kind}`
568
569
const handleChange: SelectPickerProps<ChartValuesType>['onChange'] = (selectedOption) => {
570
+ const kind = selectedOption.value.kind
571
handleAnalyticsEvent({
572
category: 'Chart Store',
- action: `CS_CHART_CONFIGURE_&_DEPLOY_${selectedOption.value.kind}_VALUE_SELECTED`,
573
+ action: `CS_CHART_CONFIGURE_&_DEPLOY_${kind === 'TEMPLATE' ? 'PRESET' : kind}_VALUE_SELECTED`,
574
})
575
handleChartValuesSelection(selectedOption.value)
576
}
0 commit comments