Infra UI: Fixing minor typo (#25005)

Resolves #25007.

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

This PR fixes this minor typo.
This commit is contained in:
Shaunak Kashyap 2018-11-06 01:27:19 -08:00
parent 7d5786c74a
commit 61ba781748
3 changed files with 3 additions and 3 deletions

View file

@ -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',

View file

@ -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',

View file

@ -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',