reorder block types in dropdown

This commit is contained in:
CarinaWolli 2023-01-05 14:30:12 -05:00
parent dffab96829
commit 54aea1aeb9

View File

@ -50,11 +50,11 @@ interface BlockType {
}
const blockTypeToBlockName: BlockType = {
paragraph: "Normal",
ol: "Numbered List",
ul: "Bulleted List",
h1: "Large Heading",
h2: "Small Heading",
ol: "Numbered List",
paragraph: "Normal",
ul: "Bulleted List",
};
function positionEditorElement(editor: HTMLInputElement, rect: DOMRect | null) {