Canvas: Allow all element types by default (#69279)

This commit is contained in:
Nathan Marrs
2023-05-30 13:58:51 -07:00
committed by GitHub
parent 4a84633773
commit 0bdf52e3f4

View File

@@ -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,
});
};