bugfix: cannot change container type

This commit is contained in:
Michael Shanks 2020-06-24 16:16:01 +01:00
parent c8c50d1ee3
commit 8b3d637292
1 changed files with 13 additions and 13 deletions

View File

@ -38,19 +38,19 @@ export default {
label: "Type", label: "Type",
control: OptionSelect, control: OptionSelect,
options: [ options: [
{ label: "article" }, "article",
{ label: "aside" }, "aside",
{ label: "details" }, "details",
{ label: "div" }, "div",
{ label: "figure" }, "figure",
{ label: "figcaption" }, "figcaption",
{ label: "footer" }, "footer",
{ label: "header" }, "header",
{ label: "main" }, "main",
{ label: "mark" }, "mark",
{ label: "nav" }, "nav",
{ label: "paragraph" }, "paragraph",
{ label: "summary" }, "summary",
], ],
}, },
], ],