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