We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc5240a commit 676e57cCopy full SHA for 676e57c
public/pages/DetectorResults/containers/AnomalyResultsTable.tsx
@@ -38,7 +38,7 @@ interface AnomalyResultsTableProps {
38
isHCDetector?: boolean;
39
isHistorical?: boolean;
40
selectedHeatmapCell?: HeatmapCell | undefined;
41
- detectorIndex: string[];
+ detectorIndices: string[];
42
detectorTimeField: string;
43
}
44
@@ -78,7 +78,7 @@ export function AnomalyResultsTable(props: AnomalyResultsTableProps) {
78
79
const savedObjectsClient = getSavedObjectsClient();
80
81
- const indexPatternTitle = props.detectorIndex.join(',');
+ const indexPatternTitle = props.detectorIndices.join(',');
82
83
// try to find an existing index pattern with this title
84
const indexPatternResponse = await savedObjectsClient.find({
0 commit comments