Commit 6c34936a by Dominik Prokop Committed by Ryan McKinley

Packages: Fix path import from grafana/data (#18667)

parent 68f74135
...@@ -14,7 +14,7 @@ import { rawToTimeRange } from './time'; ...@@ -14,7 +14,7 @@ import { rawToTimeRange } from './time';
// Types // Types
import { TimeRange, TimeOption, TimeZone, TIME_FORMAT, SelectableValue } from '@grafana/data'; import { TimeRange, TimeOption, TimeZone, TIME_FORMAT, SelectableValue } from '@grafana/data';
import { isMathString } from '@grafana/data/src/utils/datemath'; import { dateMath } from '@grafana/data';
export interface Props { export interface Props {
value: TimeRange; value: TimeRange;
...@@ -129,8 +129,8 @@ export class TimePicker extends PureComponent<Props, State> { ...@@ -129,8 +129,8 @@ export class TimePicker extends PureComponent<Props, State> {
const adjustedTime = (time: DateTime) => (isUTC ? time.utc() : time.local()) || null; const adjustedTime = (time: DateTime) => (isUTC ? time.utc() : time.local()) || null;
const adjustedTimeRange = { const adjustedTimeRange = {
to: isMathString(value.raw.to) ? value.raw.to : adjustedTime(value.to), to: dateMath.isMathString(value.raw.to) ? value.raw.to : adjustedTime(value.to),
from: isMathString(value.raw.from) ? value.raw.from : adjustedTime(value.from), from: dateMath.isMathString(value.raw.from) ? value.raw.from : adjustedTime(value.from),
}; };
const rangeString = rangeUtil.describeTimeRange(adjustedTimeRange); const rangeString = rangeUtil.describeTimeRange(adjustedTimeRange);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment