From bcbfe75770efc2fa1bc78aa6ea860561ccc14d6b Mon Sep 17 00:00:00 2001 From: Oscar Kilhed Date: Fri, 29 Sep 2023 07:15:55 +0200 Subject: [PATCH] Transformations: Correct description of rename by regex. (#75641) * Fix description of rename by regex * Update public/app/features/dashboard/components/TransformationsEditor/TransformationsEditor.tsx Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> --------- Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> --- .../components/TransformationsEditor/TransformationsEditor.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/features/dashboard/components/TransformationsEditor/TransformationsEditor.tsx b/public/app/features/dashboard/components/TransformationsEditor/TransformationsEditor.tsx index 8ac1b776bc7..e73fe1c852d 100644 --- a/public/app/features/dashboard/components/TransformationsEditor/TransformationsEditor.tsx +++ b/public/app/features/dashboard/components/TransformationsEditor/TransformationsEditor.tsx @@ -741,7 +741,8 @@ const getTransformationsRedesignDescriptions = (id: string): string => { [DataTransformerID.partitionByValues]: 'Splits a one-frame dataset into multiple series.', [DataTransformerID.prepareTimeSeries]: 'Will stretch data frames from the wide format into the long format.', [DataTransformerID.reduce]: 'Reduce all rows or data points to a single value (ex. max, mean).', - [DataTransformerID.renameByRegex]: 'Reduce all rows or data points to a single value (ex. max, mean).', + [DataTransformerID.renameByRegex]: + 'Rename parts of the query results using a regular expression and replacement pattern.', [DataTransformerID.seriesToRows]: 'Merge multiple series. Return time, metric and values as a row.', };