From 14f8f6dcfcc0fe51d00af42d9fc58e96f3d54557 Mon Sep 17 00:00:00 2001 From: Michael Shanks Date: Wed, 24 Jun 2020 16:16:01 +0100 Subject: [PATCH] bugfix: cannot change container type --- .../userInterface/temporaryPanelStructure.js | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/builder/src/components/userInterface/temporaryPanelStructure.js b/packages/builder/src/components/userInterface/temporaryPanelStructure.js index 7315e09736..e2c4044fb6 100644 --- a/packages/builder/src/components/userInterface/temporaryPanelStructure.js +++ b/packages/builder/src/components/userInterface/temporaryPanelStructure.js @@ -38,19 +38,19 @@ export default { label: "Type", control: OptionSelect, options: [ - { label: "article" }, - { label: "aside" }, - { label: "details" }, - { label: "div" }, - { label: "figure" }, - { label: "figcaption" }, - { label: "footer" }, - { label: "header" }, - { label: "main" }, - { label: "mark" }, - { label: "nav" }, - { label: "paragraph" }, - { label: "summary" }, + "article", + "aside", + "details", + "div", + "figure", + "figcaption", + "footer", + "header", + "main", + "mark", + "nav", + "paragraph", + "summary", ], }, ],