Merge pull request #26 from jiakunguo/patch-1

docs: 修改注释错别字
This commit is contained in:
LLzzZZ 2021-05-12 20:45:50 +08:00 committed by GitHub
commit db8a9381ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ export default (
if (!editorAreaFocus.value) store.commit(MutationTypes.SET_EDITORAREA_FOCUS, true)
// 如果目标元素当前未被选中,则将他设为选中状态
// 此时如果按下Ctrl键或Shift键则进入多选状态将当前已选中的元素和目标元素一设置为选中状态,否则仅将目标元素设置为选中状态
// 此时如果按下Ctrl键或Shift键则进入多选状态将当前已选中的元素和目标元素一设置为选中状态,否则仅将目标元素设置为选中状态
// 如果目标元素是分组成员,需要将该组合的其他元素一起设置为选中状态
if (!activeElementIdList.value.includes(element.id)) {
let newActiveIdList: string[] = []
@ -98,4 +98,4 @@ export default (
selectElement,
selectAllElement,
}
}
}