fix ordered list button creates task list

This commit is contained in:
Ammar Ahmed
2022-06-20 06:13:37 +05:00
parent 50a8e8bacb
commit 67e8014eaa

View File

@@ -100,7 +100,7 @@ export function NumberedList(props: ToolProps) {
const options: ListOptions<NumberedListStyleTypes> = {
type: "orderedList",
icon: "numberedList",
onClick: (editor) => editor.chain().focus().toggleTaskList().run(),
onClick: (editor) => editor.chain().focus().toggleOrderedList().run(),
subTypes: [
{ type: "decimal", title: "Decimal", items: ["1", "2", "3"] },
{ type: "upper-alpha", title: "Upper alpha", items: ["A", "B", "C"] },