From 0bdf52e3f4180db122fe34c1df0a27b45ed69eb2 Mon Sep 17 00:00:00 2001 From: Nathan Marrs Date: Tue, 30 May 2023 13:58:51 -0700 Subject: [PATCH] Canvas: Allow all element types by default (#69279) --- public/app/plugins/panel/canvas/module.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/app/plugins/panel/canvas/module.tsx b/public/app/plugins/panel/canvas/module.tsx index a3b0a04ba13..8c3c9a4c9ad 100644 --- a/public/app/plugins/panel/canvas/module.tsx +++ b/public/app/plugins/panel/canvas/module.tsx @@ -18,9 +18,9 @@ export const addStandardCanvasEditorOptions = (builder: PanelOptionsEditorBuilde builder.addBooleanSwitch({ path: 'showAdvancedTypes', - name: 'Show advanced element types', - description: '', - defaultValue: false, + name: 'Experimental element types', + description: 'Enable selection of experimental element types', + defaultValue: true, }); };