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({
37
37
addKeyboardShortcuts ( ) {
38
38
return {
39
39
Enter : ( ) => handleEnter ( this . editor ) ,
40
- "Mod-Shift-7 " : ( ) =>
40
+ "Mod-Shift-8 " : ( ) =>
41
41
this . editor . commands . BNUpdateBlock ( this . editor . state . selection . anchor , {
42
42
type : "bulletListItem" ,
43
43
props : { } ,
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const NumberedListItemBlockContent = createStronglyTypedTiptapNode({
52
52
addKeyboardShortcuts ( ) {
53
53
return {
54
54
Enter : ( ) => handleEnter ( this . editor ) ,
55
- "Mod-Shift-8 " : ( ) =>
55
+ "Mod-Shift-7 " : ( ) =>
56
56
this . editor . commands . BNUpdateBlock ( this . editor . state . selection . anchor , {
57
57
type : "numberedListItem" ,
58
58
props : { } ,
Original file line number Diff line number Diff line change @@ -49,13 +49,13 @@ const extraFields: Record<
49
49
group : "Basic blocks" ,
50
50
icon : < RiListOrdered size = { 18 } /> ,
51
51
hint : "Used to display a numbered list" ,
52
- shortcut : formatKeyboardShortcut ( "Mod-Alt -7" ) ,
52
+ shortcut : formatKeyboardShortcut ( "Mod-Shift -7" ) ,
53
53
} ,
54
54
"Bullet List" : {
55
55
group : "Basic blocks" ,
56
56
icon : < RiListUnordered size = { 18 } /> ,
57
57
hint : "Used to display an unordered list" ,
58
- shortcut : formatKeyboardShortcut ( "Mod-Alt-9 " ) ,
58
+ shortcut : formatKeyboardShortcut ( "Mod-Shift-8 " ) ,
59
59
} ,
60
60
Paragraph : {
61
61
group : "Basic blocks" ,
You can’t perform that action at this time.
0 commit comments