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 6d4edd3 commit a699b95Copy full SHA for a699b95
static/app/types/workflowEngine/dataConditions.tsx
@@ -52,12 +52,6 @@ export enum DataConditionGroupLogicType {
52
NONE = 'none',
53
}
54
55
-export const enum DetectorPriorityLevel {
56
- HIGH = 75,
57
- MEDIUM = 50,
58
- LOW = 25,
59
-}
60
-
61
export interface DataCondition {
62
comparison: any;
63
comparison_type: DataConditionType;
tests/js/fixtures/dataConditions.ts
@@ -7,7 +7,7 @@ import {
7
DataConditionType,
8
} from 'sentry/types/workflowEngine/dataConditions';
9
10
-export function DataConditionFixture(params: Partial<DataCondition> = {}): DataCondition {
+function DataConditionFixture(params: Partial<DataCondition> = {}): DataCondition {
11
return {
12
comparison_type: DataConditionType.EQUAL,
13
comparison: '8',
0 commit comments