diff --git a/packages/grafana-ui/src/utils/displayValue.ts b/packages/grafana-ui/src/utils/displayValue.ts index 04c78476595..2d424805d2c 100644 --- a/packages/grafana-ui/src/utils/displayValue.ts +++ b/packages/grafana-ui/src/utils/displayValue.ts @@ -1,10 +1,14 @@ -import { ValueMapping, Threshold } from '../types'; +// Libraries import _ from 'lodash'; +import moment from 'moment'; + +// Utils import { getValueFormat, DecimalCount } from './valueFormats/valueFormats'; import { getMappedValue } from './valueMappings'; -import { GrafanaTheme, GrafanaThemeType } from '../types'; import { getColorFromHexRgbOrName } from './namedColorsPalette'; -import moment from 'moment'; + +// Types +import { GrafanaTheme, GrafanaThemeType, ValueMapping, Threshold } from '../types'; export interface DisplayValue { text: string; // Show in the UI