File tree Expand file tree Collapse file tree 6 files changed +4
-4
lines changed
core/src/blocks/ListItemBlockContent
BulletListItemBlockContent
NumberedListItemBlockContent
tests/src/end-to-end/theming/theming.test.ts-snapshots Expand file tree Collapse file tree 6 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ const BulletListItemBlockContent = createStronglyTypedTiptapNode({
3737 addKeyboardShortcuts ( ) {
3838 return {
3939 Enter : ( ) => handleEnter ( this . editor ) ,
40- "Mod-Shift-7 " : ( ) =>
40+ "Mod-Shift-8 " : ( ) =>
4141 this . editor . commands . BNUpdateBlock ( this . editor . state . selection . anchor , {
4242 type : "bulletListItem" ,
4343 props : { } ,
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const NumberedListItemBlockContent = createStronglyTypedTiptapNode({
5252 addKeyboardShortcuts ( ) {
5353 return {
5454 Enter : ( ) => handleEnter ( this . editor ) ,
55- "Mod-Shift-8 " : ( ) =>
55+ "Mod-Shift-7 " : ( ) =>
5656 this . editor . commands . BNUpdateBlock ( this . editor . state . selection . anchor , {
5757 type : "numberedListItem" ,
5858 props : { } ,
Original file line number Diff line number Diff line change @@ -49,13 +49,13 @@ const extraFields: Record<
4949 group : "Basic blocks" ,
5050 icon : < RiListOrdered size = { 18 } /> ,
5151 hint : "Used to display a numbered list" ,
52- shortcut : formatKeyboardShortcut ( "Mod-Alt -7" ) ,
52+ shortcut : formatKeyboardShortcut ( "Mod-Shift -7" ) ,
5353 } ,
5454 "Bullet List" : {
5555 group : "Basic blocks" ,
5656 icon : < RiListUnordered size = { 18 } /> ,
5757 hint : "Used to display an unordered list" ,
58- shortcut : formatKeyboardShortcut ( "Mod-Alt-9 " ) ,
58+ shortcut : formatKeyboardShortcut ( "Mod-Shift-8 " ) ,
5959 } ,
6060 Paragraph : {
6161 group : "Basic blocks" ,
You can’t perform that action at this time.
0 commit comments