settings.tsx 445 B

123456789
  1. import {t} from 'sentry/locale';
  2. export const MIN_WIDTH = 200;
  3. export const MIN_HEIGHT = 96;
  4. export const DEFAULT_FIELD = 'unknown'; // Numeric data might, in theory, have a missing field. In this case we need a fallback to provide to the field rendering pipeline. `'unknown'` will results in rendering as a string
  5. export const MISSING_DATA_MESSAGE = t('No Data');
  6. export const NON_FINITE_NUMBER_MESSAGE = t('Value is not a finite number.');