Skip to content

Commit

Permalink
Infra UI: Fixing minor typo (#25005)
Browse files Browse the repository at this point in the history
Resolves #25007.

Outbound traffic is generally denoted with TX, abbreviation for Transmit, instead of RX, abbreviation of Receive.

This PR fixes this minor typo.
  • Loading branch information
ycombinator authored Nov 6, 2018
1 parent b74f286 commit 1e346b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const containerLayoutCreator: InfraMetricLayoutCreator = theme => [
formatterTemplate: '{{value}}/s',
},
tx: {
name: 'Outbound (RX)',
name: 'Outbound (TX)',
color: theme.eui.euiColorFullShade,
formatter: InfraFormatterType.bits,
formatterTemplate: '{{value}}/s',
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/infra/public/pages/metrics/layouts/host.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const hostLayoutCreator: InfraMetricLayoutCreator = theme => [
formatterTemplate: '{{value}}/s',
},
tx: {
name: 'Outbound (RX)',
name: 'Outbound (TX)',
color: theme.eui.euiColorFullShade,
formatter: InfraFormatterType.bits,
formatterTemplate: '{{value}}/s',
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/infra/public/pages/metrics/layouts/pod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const podLayoutCreator: InfraMetricLayoutCreator = theme => [
formatterTemplate: '{{value}}/s',
},
tx: {
name: 'Outbound (RX)',
name: 'Outbound (TX)',
color: theme.eui.euiColorFullShade,
formatter: InfraFormatterType.bits,
formatterTemplate: '{{value}}/s',
Expand Down

0 comments on commit 1e346b9

Please sign in to comment.