signoz/frontend/src/utils/getFormatedLegend.ts
Rajat Dabade 4e8e7745c1
[FE]: spaces in legend formatting (#4349)
* refactor: spaces in legend formatting

* refactor: spaces in legend formatting

* chore: string to const string

* refactor: replace string by const
2024-01-17 15:17:51 +05:30

3 lines
116 B
TypeScript

export const getFormatedLegend = (value: string): string =>
value.replace(/\{\s*\{\s*(.*?)\s*\}\s*\}/g, '{{$1}}');