Tweaks to value formatting

This commit is contained in:
Jamie Wong
2018-01-07 08:36:11 -08:00
parent 0f776cfb10
commit f72ea82146
5 changed files with 20 additions and 10 deletions
+1 -1
View File
@@ -41,6 +41,6 @@ export function importFromStackprof(stackprofProfile: StackprofProfile): Profile
profile.appendSample(stack, sampleDuration)
}
profile.setValueFormatter(new TimeFormatter('us'))
profile.setValueFormatter(new TimeFormatter('microseconds'))
return profile
}