mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-21 09:00:12 +01:00
This commit is contained in:
parent
142abbe8e1
commit
d7321cccec
2 changed files with 10 additions and 3 deletions
|
|
@ -348,7 +348,9 @@ export const isCurrentEditor = (blockId: string) => {
|
|||
if (activeElement) {
|
||||
const tab = getInstanceById(activeElement.getAttribute("data-id"));
|
||||
if (tab instanceof Tab && tab.model instanceof Editor) {
|
||||
if (tab.model.editor.protyle.block.rootID !== blockId && tab.model.editor.protyle.block.id !== blockId) {
|
||||
if (tab.model.editor.protyle.block.rootID !== blockId &&
|
||||
tab.model.editor.protyle.block.parentID !== blockId && // updateBacklinkGraph 时会传入 parentID
|
||||
tab.model.editor.protyle.block.id !== blockId) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue