Skip to content

Commit 833880c

Browse files
committed
fixing indexer
1 parent 9acc782 commit 833880c

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

client/src/components/FeatureSelection/VectorFeatureChart.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,7 @@ export default defineComponent({
9898
props.vectorFeatureId,
9999
props.graphInfo.xAxis,
100100
props.graphInfo.yAxis,
101-
props.graphInfo.filterColumn,
102-
props.graphInfo.filterValue,
101+
props.graphInfo.indexer,
103102
);
104103
graphData.value = data;
105104
renderGraph(data);

client/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ export interface VectorFeatureTableGraph {
771771
type: string;
772772
xAxis: string;
773773
yAxis: string;
774-
indexer: string;
774+
indexer?: string;
775775
}
776776

777777
export interface FeatureGraphData {

0 commit comments

Comments
 (0)