Skip to content

Commit

Permalink
chore: reorder toolbar items
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Dec 23, 2023
1 parent 637cd85 commit a31ad06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/toolbar/MarkdownToolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -257,11 +257,11 @@ const formatOptions: FormatOption[] = [
]
const templateOptions: TemplateOption[] = [
{ label: 'Codeblock', action: 'codeblock', icon: CodeblockIcon },
{ label: 'Table', action: 'table', icon: TableIcon },
{ label: 'Tasklist', action: 'task', icon: TasklistIcon },
{ label: 'Unordered List', action: 'unordered-list', icon: ListUnorderedIcon },
{ label: 'Ordered List', action: 'ordered-list', icon: ListOrderedIcon },
{ label: 'Tasklist', action: 'task', icon: TasklistIcon },
{ label: 'Codeblock', action: 'codeblock', icon: CodeblockIcon },
{ label: 'Table', action: 'table', icon: TableIcon },
{ label: 'Blockquote', action: 'blockquote', icon: BlockquoteIcon },
]
Expand Down

0 comments on commit a31ad06

Please sign in to comment.