mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
TimeseriesPanel: Fix variables in data links (#56729)
* TimeseriesPanel: Fix variables in data links * Refactor variable fix for all Timeseries panels * cr mods
This commit is contained in:
@@ -26,3 +26,4 @@ export { PanelPlugin, type SetFieldConfigOptionsArgs, type StandardOptionConfig
|
||||
export { createFieldConfigRegistry } from './panel/registryFactories';
|
||||
export { type QueryRunner, type QueryRunnerOptions } from './types/queryRunner';
|
||||
export { type GroupingToMatrixTransformerOptions } from './transformations/transformers/groupingToMatrix';
|
||||
export { getLinksSupplier } from './field/fieldOverrides';
|
||||
|
||||
@@ -16,6 +16,10 @@ export class SortedVector<T = any> implements Vector<T> {
|
||||
return this.source.get(this.order[index]);
|
||||
}
|
||||
|
||||
getOrderIndex(index: number): number {
|
||||
return this.order[index];
|
||||
}
|
||||
|
||||
toArray(): T[] {
|
||||
return vectorToArray(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user