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>
This commit is contained in:
Oscar Kilhed
2023-09-29 07:15:55 +02:00
committed by GitHub
parent 523cb97aff
commit bcbfe75770

View File

@@ -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.',
};