Revert "Explore: Show log line if there is an interpolated link" (#65315)

Revert "Explore: Show log line if there is an interpolated link (#62926)"

This reverts commit aa857e2a4f.
This commit is contained in:
Torkel Ödegaard
2023-03-27 19:19:42 +02:00
committed by GitHub
parent 21ede347cb
commit f43ef18732
18 changed files with 762 additions and 1080 deletions

View File

@@ -22,10 +22,6 @@ export type TypedVariableModel =
| OrgVariableModel
| DashboardVariableModel;
type VarValue = string | number | boolean | undefined;
export type VariableMap = Record<string, VarValue>;
export enum VariableRefresh {
never, // removed from the UI
onDashboardLoad,

View File

@@ -1,4 +1,4 @@
import { ScopedVars, TimeRange, TypedVariableModel, VariableMap } from '@grafana/data';
import { ScopedVars, TimeRange, TypedVariableModel } from '@grafana/data';
/**
* Via the TemplateSrv consumers get access to all the available template variables
@@ -18,11 +18,6 @@ export interface TemplateSrv {
*/
replace(target?: string, scopedVars?: ScopedVars, format?: string | Function): string;
/**
* Return the variables and values only
*/
getAllVariablesInTarget(target: string, scopedVars: ScopedVars, format?: string | Function): VariableMap;
/**
* Checks if a target contains template variables.
*/