constants.tsx 266 B

123456789
  1. import {t} from 'sentry/locale';
  2. import {SelectValue} from 'sentry/types';
  3. import {DataFilter} from './types';
  4. export const FILTER_OPTIONS: SelectValue<DataFilter>[] = [
  5. {label: t('Exclude'), value: 'exclude_outliers'},
  6. {label: t('Include'), value: 'all'},
  7. ];