mirror of
https://github.com/grafana/grafana.git
synced 2026-09-05 04:40:13 -05:00
Formats: Add raw format to formatRegistry (#26743)
This commit is contained in:
@@ -28,6 +28,12 @@ export const formatRegistry = new Registry<FormatRegistryItem>(() => {
|
||||
return '(' + quotedValues.join(' OR ') + ')';
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 'raw',
|
||||
name: 'raw',
|
||||
description: 'Keep value as is',
|
||||
formatter: value => value,
|
||||
},
|
||||
{
|
||||
id: 'regex',
|
||||
name: 'Regex',
|
||||
|
||||
Reference in New Issue
Block a user