mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
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:
@@ -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,
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user