mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
FieldDisplay: Update title variable syntax (#19217)
This commit is contained in:
parent
c4e8f6e809
commit
14f1cf29f0
@ -50,13 +50,13 @@ function getTitleTemplate(title: string | undefined, stats: string[], data?: Dat
|
|||||||
|
|
||||||
const parts: string[] = [];
|
const parts: string[] = [];
|
||||||
if (stats.length > 1) {
|
if (stats.length > 1) {
|
||||||
parts.push('$' + VAR_CALC);
|
parts.push('${' + VAR_CALC + '}');
|
||||||
}
|
}
|
||||||
if (data.length > 1) {
|
if (data.length > 1) {
|
||||||
parts.push('${' + VAR_SERIES_NAME + '}');
|
parts.push('${' + VAR_SERIES_NAME + '}');
|
||||||
}
|
}
|
||||||
if (fieldCount > 1 || !parts.length) {
|
if (fieldCount > 1 || !parts.length) {
|
||||||
parts.push('$' + VAR_FIELD_NAME);
|
parts.push('${' + VAR_FIELD_NAME + '}');
|
||||||
}
|
}
|
||||||
return parts.join(' ');
|
return parts.join(' ');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user