From 833880c4149b46709783ed2947db54eff08c5b69 Mon Sep 17 00:00:00 2001 From: Bryon Lewis Date: Thu, 13 Feb 2025 10:11:37 -0500 Subject: [PATCH] fixing indexer --- client/src/components/FeatureSelection/VectorFeatureChart.vue | 3 +-- client/src/types.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) 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 {