mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
DataLinks: Fixed interpolation of repeated variables used in data links (#26147)
This commit is contained in:
parent
292c985b76
commit
89b56782c6
@ -54,8 +54,10 @@ export const getFieldLinksSupplier = (value: FieldDisplay): LinkModelSupplier<Fi
|
||||
return undefined;
|
||||
}
|
||||
return {
|
||||
getLinks: (_scopedVars?: any) => {
|
||||
const scopedVars: DataLinkScopedVars = {};
|
||||
getLinks: (existingScopedVars?: any) => {
|
||||
const scopedVars: DataLinkScopedVars = {
|
||||
...(existingScopedVars ?? {}),
|
||||
};
|
||||
|
||||
if (value.view) {
|
||||
const { dataFrame } = value.view;
|
||||
|
Loading…
Reference in New Issue
Block a user