mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Variables: Adding dashboard to test updating variables from data link (#25192)
This commit is contained in:
@@ -367,7 +367,7 @@ export const getLinksSupplier = (
|
||||
const info: LinkModel<Field> = {
|
||||
href: locationUtil.assureBaseUrl(href.replace(/\n/g, '')),
|
||||
title: link.title || '',
|
||||
target: link.targetBlank ? '_blank' : '_self',
|
||||
target: link.targetBlank ? '_blank' : undefined,
|
||||
origin: field,
|
||||
};
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ export interface DataLink {
|
||||
};
|
||||
}
|
||||
|
||||
export type LinkTarget = '_blank' | '_self';
|
||||
export type LinkTarget = '_blank' | '_self' | undefined;
|
||||
|
||||
/**
|
||||
* Processed Link Model. The values are ready to use
|
||||
|
||||
Reference in New Issue
Block a user