chore: sorting key is updated (#1059)

This commit is contained in:
palash-signoz 2022-05-04 14:32:38 +05:30 committed by GitHub
parent 2dcc6fda77
commit 5b316afa12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ function TraceTable(): JSX.Element {
const getSortKey = (key: string): string => {
if (key === 'durationNano') {
return 'durationNano';
return 'duration';
}
if (key === 'timestamp') {
return 'timestamp';