fix: bulleted-list typo

This commit is contained in:
Lucas.Xu 2022-08-02 17:15:07 +08:00
parent fa05170c86
commit 5fdcdbd357
2 changed files with 4 additions and 4 deletions

View File

@ -144,7 +144,7 @@
} }
], ],
"attributes": { "attributes": {
"subtype": "bullet-list" "subtype": "bulleted-list"
} }
}, },
{ {
@ -155,7 +155,7 @@
} }
], ],
"attributes": { "attributes": {
"subtype": "bullet-list" "subtype": "bulleted-list"
} }
}, },
{ {
@ -170,7 +170,7 @@
} }
], ],
"attributes": { "attributes": {
"subtype": "bullet-list" "subtype": "bulleted-list"
} }
}, },
{ {

View File

@ -25,7 +25,7 @@ NodeWidgetBuilders defaultBuilders = {
'text': RichTextNodeWidgetBuilder(), 'text': RichTextNodeWidgetBuilder(),
'text/checkbox': CheckboxNodeWidgetBuilder(), 'text/checkbox': CheckboxNodeWidgetBuilder(),
'text/heading': HeadingTextNodeWidgetBuilder(), 'text/heading': HeadingTextNodeWidgetBuilder(),
'text/bullet-list': BulletedListTextNodeWidgetBuilder(), 'text/bulleted-list': BulletedListTextNodeWidgetBuilder(),
'text/number-list': NumberListTextNodeWidgetBuilder(), 'text/number-list': NumberListTextNodeWidgetBuilder(),
'text/quote': QuotedTextNodeWidgetBuilder(), 'text/quote': QuotedTextNodeWidgetBuilder(),
}; };