fix: abnormal hyperlink (#189)

修复在某种选中模式下,超链接格式逆位
This commit is contained in:
YangQi 2022-08-23 22:16:44 +08:00 committed by GitHub
parent 32fb134675
commit f89d85cc4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -465,12 +465,14 @@ export default {
start = anchor
end = head
}
} else if (head.line < anchor.line) {
start = head
end = anchor
} else {
start = head
end = anchor
if (head.line < anchor.line) {
start = head
end = anchor
} else {
start = anchor
end = head
}
}
const rows = []