When defining a URL template, it's possible to use {{rawValue}} for unescaped value. But if {{rawValue}} is entered into Label template input, it results in missing label for the link.
Current workaround is to use {{value}} variable for the link label:
But it's confusing that {{rawValue}} variable is not available for the label template and {{value}} works as {{rawValue}}.
When defining a URL template, it's possible to use
{{rawValue}}
for unescaped value. But if{{rawValue}}
is entered into Label template input, it results in missing label for the link.Current workaround is to use
{{value}}
variable for the link label:But it's confusing that
{{rawValue}}
variable is not available for the label template and{{value}}
works as{{rawValue}}
.https://github.com/elastic/kibana/blob/f388d991caac20222a73dc62811df0d4d2b602a8/src/plugins/field_formats/common/converters/url.ts#L80-L99