Skip to content

Commit 676e57c

Browse files
committed
address comments
Signed-off-by: Jackie Han <[email protected]>
1 parent dc5240a commit 676e57c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/pages/DetectorResults/containers/AnomalyResultsTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ interface AnomalyResultsTableProps {
3838
isHCDetector?: boolean;
3939
isHistorical?: boolean;
4040
selectedHeatmapCell?: HeatmapCell | undefined;
41-
detectorIndex: string[];
41+
detectorIndices: string[];
4242
detectorTimeField: string;
4343
}
4444

@@ -78,7 +78,7 @@ export function AnomalyResultsTable(props: AnomalyResultsTableProps) {
7878

7979
const savedObjectsClient = getSavedObjectsClient();
8080

81-
const indexPatternTitle = props.detectorIndex.join(',');
81+
const indexPatternTitle = props.detectorIndices.join(',');
8282

8383
// try to find an existing index pattern with this title
8484
const indexPatternResponse = await savedObjectsClient.find({

0 commit comments

Comments
 (0)