瀏覽代碼

Add full URL to the issue in code comments.

Maciej 5 年之前
父節點
當前提交
2c98fec874
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/ckeditor5-paste-from-office/src/filters/list.js

+ 2 - 2
packages/ckeditor5-paste-from-office/src/filters/list.js

@@ -364,7 +364,7 @@ function removeBulletElement( element, writer ) {
 // However, it's quite easy to change the `id` attribute for nested lists and it will break the list feature while pasting.
 // Let's check also the `indent` attribute. If between those two elements, the difference is equal to 1, we can assume that
 // the `currentItem` is a beginning of the nested list because lists in CKEditor 5 always starts with the `indent=0` attribute.
-// See: #7805.
+// See: https://github.com/ckeditor/ckeditor5/issues/7805.
 //
 // @param {Object} previousItem
 // @param {Object} currentItem
@@ -375,7 +375,7 @@ function isNewListNeeded( previousItem, currentItem ) {
 	}
 
 	if ( previousItem.id !== currentItem.id ) {
-		// See: #7805.
+		// See: https://github.com/ckeditor/ckeditor5/issues/7805.
 		//
 		// * List item 1.
 		//     - Nested list item 1.