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 4257a32 commit 1e1a5c5Copy full SHA for 1e1a5c5
web/src/components/dropdown-poll-interval.tsx
@@ -5,6 +5,7 @@ import {
5
parsePrometheusDuration,
6
} from './console/console-shared/src/datetime/prometheus';
7
import { SimpleSelect, SimpleSelectOption } from '@patternfly/react-templates';
8
+import { LegacyDashboardPageTestIDs } from './data-test';
9
10
type DropDownPollIntervalProps = {
11
setInterval: (v: number) => void;
@@ -48,6 +49,7 @@ export const DropDownPollInterval: React.FunctionComponent<DropDownPollIntervalP
48
49
initialOptions={initialOptions}
50
onSelect={(_ev, selection) => onSelect(_ev, selection)}
51
toggleWidth="150px"
52
+ data-test={LegacyDashboardPageTestIDs.PollIntervalDropdownOptions}
53
/>
54
);
55
};
0 commit comments