Skip to content

Commit

Permalink
enable rtt column by default (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpinsonneau authored Oct 16, 2023
1 parent 76a4f9f commit 49dbc9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/utils/columns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ export const getExtraColumns = (t: TFunction): Column[] => {
tooltip: t('TCP handshake Round Trip Time'),
fieldName: 'TimeFlowRttNs',
quickFilter: 'time_flow_rtt',
isSelected: false,
isSelected: true,
value: f => f.fields.TimeFlowRttNs || '',
sort: (a, b, col) => compareNumbers(col.value(a) as number, col.value(b) as number),
width: 5
Expand Down

0 comments on commit 49dbc9e

Please sign in to comment.