8
0
Эх сурвалжийг харах

Aligned key names to our convention.

Piotrek Koszuliński 8 жил өмнө
parent
commit
21c85f43f8

+ 2 - 2
packages/ckeditor5-list/src/list.js

@@ -61,9 +61,9 @@ export default class List extends Plugin {
 		this.listenTo( this.editor.editing.view, 'keydown', ( evt, data ) => {
 			let commandName = null;
 
-			if ( data.keystroke == parseKeystroke( 'tab' ) ) {
+			if ( data.keystroke == parseKeystroke( 'Tab' ) ) {
 				commandName = 'indentList';
-			} else if ( data.keystroke == parseKeystroke( 'Shift+tab' ) ) {
+			} else if ( data.keystroke == parseKeystroke( 'Shift+Tab' ) ) {
 				commandName = 'outdentList';
 			}