From 98f3b5fecb148f886fdec8c999684536e29e6598 Mon Sep 17 00:00:00 2001 From: Sven Grossmann Date: Wed, 16 Aug 2023 23:04:45 +0200 Subject: [PATCH] Fix `dupicated` typo into `duplicated` (#73351) fix typos in transformation --- .../src/transformations/transformers/joinDataFrames.test.ts | 4 ++-- .../transformers/editors/JoinByFieldTransformerEditor.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/grafana-data/src/transformations/transformers/joinDataFrames.test.ts b/packages/grafana-data/src/transformations/transformers/joinDataFrames.test.ts index bcdf26f7628..137062a2503 100644 --- a/packages/grafana-data/src/transformations/transformers/joinDataFrames.test.ts +++ b/packages/grafana-data/src/transformations/transformers/joinDataFrames.test.ts @@ -31,7 +31,7 @@ describe('align frames', () => { }); // the following does not work for tabular joins where the joined on field value is duplicated - // the time will never have a dupicated time which is joined on + // the time will never have a duplicated time which is joined on it('should perform an outer join', () => { const out = joinDataFrames({ frames: [series1, series2] })!; expect( @@ -415,7 +415,7 @@ describe('align frames', () => { it('supports duplicate times', () => { //---------- // NOTE!!! - // * ideally we would *keep* dupicate fields + // * ideally we would *keep* duplicate fields //---------- const series1 = toDataFrame({ fields: [ diff --git a/public/app/features/transformers/editors/JoinByFieldTransformerEditor.tsx b/public/app/features/transformers/editors/JoinByFieldTransformerEditor.tsx index 1853af3e315..f8000ae29c4 100644 --- a/public/app/features/transformers/editors/JoinByFieldTransformerEditor.tsx +++ b/public/app/features/transformers/editors/JoinByFieldTransformerEditor.tsx @@ -24,7 +24,7 @@ const modes = [ value: JoinMode.outerTabular, label: 'OUTER (TABULAR)', description: - 'Join on a field value with dupicated values. Non performant outer join best used for tabular(SQL like) data.', + 'Join on a field value with duplicated values. Non performant outer join best used for tabular(SQL like) data.', }, { value: JoinMode.inner, label: 'INNER', description: 'Drop rows that do not match a value in all tables.' }, ];