Skip to content

Commit

Permalink
hide ratio metric for now, backend does not support ratio yet
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyl committed Sep 4, 2023
1 parent d3b5ef3 commit b7733f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ const MetricConfig = (props: Props) => {
Select the metric type
</Text>
}
labels={["Sum", "Count", "Distinct", "Ratio"]}
values={["sum", "count", "nunique", "ratio"]}
labels={["Sum", "Count", "Distinct"]}
values={["sum", "count", "nunique"]}
selectedValue={metricType ? metricType : ""}
onValueChange={(metric) => {
setMetricColumn({
Expand Down

0 comments on commit b7733f4

Please sign in to comment.