Skip to content

Commit

Permalink
fix: prevent new measure name side effect
Browse files Browse the repository at this point in the history
  • Loading branch information
nextchamp-saqib committed Dec 9, 2024
1 parent 5433871 commit ca9d354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src2/charts/components/MeasurePicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ watchEffect(() => {
cm.measure_name.includes(cm.column_name)
if (cm.aggregation && cm.column_name && hasDefaultLabel) {
cm.measure_name = `${cm.aggregation}_${cm.column_name}`
cm.measure_name = `${cm.aggregation}_of_${cm.column_name}`
}
})
Expand Down

0 comments on commit ca9d354

Please sign in to comment.