mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
FieldValues: Use plain arrays instead of Vector (part 3 of 2) (#66612)
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
This commit is contained in:
@@ -234,7 +234,7 @@ export const routeLayer: MapLayerRegistryItem<RouteConfig> = {
|
||||
if (pointIdx !== null) {
|
||||
const out = getGeometryField(frame, location);
|
||||
if (out.field) {
|
||||
crosshairFeature.setGeometry(out.field.values.get(pointIdx));
|
||||
crosshairFeature.setGeometry(out.field.values[pointIdx]);
|
||||
crosshairFeature.setStyle(crosshairStyle);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user