mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
TextPanel: Fixes so panel title is updated when variables change (#30884)
* TextPanel: Fixes so panel title is updated when variables change * Tests: fixes tests * Chore: updates after PR comments
This commit is contained in:
7
packages/grafana-data/src/types/geometry.ts
Normal file
7
packages/grafana-data/src/types/geometry.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* A coordinate on a two dimensional plane.
|
||||
*/
|
||||
export interface CartesianCoords2D {
|
||||
x: number;
|
||||
y: number;
|
||||
}
|
||||
@@ -29,5 +29,6 @@ export * from './explore';
|
||||
export * from './legacyEvents';
|
||||
export * from './live';
|
||||
export * from './variables';
|
||||
export * from './geometry';
|
||||
|
||||
export { GrafanaConfig, BuildInfo, FeatureToggles, LicenseInfo } from './config';
|
||||
|
||||
Reference in New Issue
Block a user