We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8de6744 + eae4475 commit 68bc219Copy full SHA for 68bc219
1 file changed
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