diff --git a/packages/jaeger-ui/src/utils/date.tsx b/packages/jaeger-ui/src/utils/date.tsx index dd4308d16c..350e86601a 100644 --- a/packages/jaeger-ui/src/utils/date.tsx +++ b/packages/jaeger-ui/src/utils/date.tsx @@ -28,11 +28,8 @@ export const STANDARD_DATE_FORMAT = 'YYYY-MM-DD'; export const STANDARD_TIME_FORMAT = 'HH:mm'; export const STANDARD_DATETIME_FORMAT = 'MMMM D YYYY, HH:mm:ss.SSS'; -/** @constant 1μs is the precision of Jaeger timestamps */ -export const ONE_MICROSECOND = 1; - /** @constant 1ms as the number of microseconds, which is the precision of Jaeger timestamps */ -export const ONE_MILLISECOND = 1000 * ONE_MICROSECOND; +export const ONE_MILLISECOND = 1000 * 1; /** @constant 1s as the number of microseconds, which is the precision of Jaeger timestamps */ export const ONE_SECOND = 1000 * ONE_MILLISECOND;