From c0afdc89c5091b0b1b77330104207f1f7c869e20 Mon Sep 17 00:00:00 2001 From: Chris Cowan Date: Fri, 15 May 2020 05:54:07 -0700 Subject: [PATCH] Fixing i18n paths --- .../components/waffle/waffle_sort_controls.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/waffle/waffle_sort_controls.tsx b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/waffle/waffle_sort_controls.tsx index 37b03d302c9fc..b5e6aacd0e6f4 100644 --- a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/waffle/waffle_sort_controls.tsx +++ b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/waffle/waffle_sort_controls.tsx @@ -17,8 +17,8 @@ interface Props { } const LABELS = { - name: i18n.translate('xpack.infra.waffle.sort.nameLabel', { defaultMessage: 'Name' }), - value: i18n.translate('xpath.infra.waffle.sort.valueLabel', { defaultMessage: 'Metric value' }), + name: i18n.translate('xpack.infra.waffle.sortNameLabel', { defaultMessage: 'Name' }), + value: i18n.translate('xpack.infra.waffle.sort.valueLabel', { defaultMessage: 'Metric value' }), }; export const WaffleSortControls = ({ sort, onChange }: Props) => { @@ -36,7 +36,7 @@ export const WaffleSortControls = ({ sort, onChange }: Props) => { const button = ( {label} @@ -95,7 +95,7 @@ export const WaffleSortControls = ({ sort, onChange }: Props) => {