|
@@ -6,20 +6,18 @@ import {defined} from 'sentry/utils';
|
|
|
import {decodeScalar} from 'sentry/utils/queryString';
|
|
|
|
|
|
type ColorEncoding =
|
|
|
- | 'app_version'
|
|
|
+ | 'version' // this will use a concatenation of `app_version_name` and `app_version`
|
|
|
| 'device_manufacturer'
|
|
|
| 'device_model'
|
|
|
| 'device_os_version'
|
|
|
- | 'interaction_name'
|
|
|
- | 'android_api_level';
|
|
|
+ | 'interaction_name';
|
|
|
|
|
|
const COLOR_ENCODING_LABELS: Record<ColorEncoding, string> = {
|
|
|
- app_version: t('App Version'),
|
|
|
+ version: t('App Version'),
|
|
|
device_manufacturer: t('Device Manufacturer'),
|
|
|
device_model: t('Device Model'),
|
|
|
device_os_version: t('Device Os Version'),
|
|
|
interaction_name: t('Interaction Name'),
|
|
|
- android_api_level: t('Android Api Level'),
|
|
|
};
|
|
|
|
|
|
export const COLOR_ENCODINGS: SelectValue<ColorEncoding>[] = Object.entries(
|