File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
x-pack/legacy/plugins/apm/public/components/app/ServiceMap/Popover Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,7 @@ import { isNumber } from 'lodash';
1616import React from 'react' ;
1717import styled from 'styled-components' ;
1818import { ServiceNodeMetrics } from '../../../../../../../../plugins/apm/common/service_map' ;
19- import {
20- asDuration ,
21- asPercent ,
22- toMicroseconds ,
23- tpmUnit
24- } from '../../../../utils/formatters' ;
19+ import { asDuration , asPercent , tpmUnit } from '../../../../utils/formatters' ;
2520
2621function LoadingSpinner ( ) {
2722 return (
@@ -70,7 +65,7 @@ export function ServiceMetricList({
7065 }
7166 ) ,
7267 description : isNumber ( avgTransactionDuration )
73- ? asDuration ( toMicroseconds ( avgTransactionDuration , 'milliseconds' ) )
68+ ? asDuration ( avgTransactionDuration )
7469 : null
7570 } ,
7671 {
You can’t perform that action at this time.
0 commit comments