From eae2ce38e89bc97f177aea50f6b646444edb6b65 Mon Sep 17 00:00:00 2001 From: Nathan Marrs Date: Thu, 9 May 2024 16:13:42 -0600 Subject: [PATCH] Canvas: Fix infinite panning editor description (#87582) --- public/app/plugins/panel/canvas/module.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/panel/canvas/module.tsx b/public/app/plugins/panel/canvas/module.tsx index e6fa75a7256..b7fc9e8a5fd 100644 --- a/public/app/plugins/panel/canvas/module.tsx +++ b/public/app/plugins/panel/canvas/module.tsx @@ -43,7 +43,7 @@ export const addStandardCanvasEditorOptions = (builder: PanelOptionsEditorBuilde path: 'infinitePan', name: 'Infinite panning', description: - 'Enable infinite panning - useful for expansive canvases. Warning: this an experimental feature and currently only works well with elements that are top / left constrained', + 'Enable infinite panning - useful for expansive canvases. Warning: this is an experimental feature and currently only works well with elements that are top / left constrained', defaultValue: false, showIf: (opts) => config.featureToggles.canvasPanelPanZoom && opts.panZoom, });