diff --git a/client/src/components/FeatureSelection/VectorFeatureChart.vue b/client/src/components/FeatureSelection/VectorFeatureChart.vue index b1ccc47..9a21f09 100644 --- a/client/src/components/FeatureSelection/VectorFeatureChart.vue +++ b/client/src/components/FeatureSelection/VectorFeatureChart.vue @@ -98,8 +98,7 @@ export default defineComponent({ props.vectorFeatureId, props.graphInfo.xAxis, props.graphInfo.yAxis, - props.graphInfo.filterColumn, - props.graphInfo.filterValue, + props.graphInfo.indexer, ); graphData.value = data; renderGraph(data); diff --git a/client/src/types.ts b/client/src/types.ts index 408ba0f..f183345 100644 --- a/client/src/types.ts +++ b/client/src/types.ts @@ -771,7 +771,7 @@ export interface VectorFeatureTableGraph { type: string; xAxis: string; yAxis: string; - indexer: string; + indexer?: string; } export interface FeatureGraphData {