mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-19 16:10:12 +01:00
This commit is contained in:
parent
d586a26cba
commit
03b00a6b8d
4 changed files with 13 additions and 7 deletions
|
|
@ -43,7 +43,8 @@ export const reloadSync = (
|
|||
hideMsg = true,
|
||||
// 同步的时候需要更新只读状态 https://github.com/siyuan-note/siyuan/issues/11517
|
||||
// 调整大纲的时候需要使用现有状态 https://github.com/siyuan-note/siyuan/issues/11808
|
||||
updateReadonly = true
|
||||
updateReadonly = true,
|
||||
onlyUpdateDoc = false
|
||||
) => {
|
||||
if (hideMsg) {
|
||||
hideMessage();
|
||||
|
|
@ -124,11 +125,13 @@ export const reloadSync = (
|
|||
}
|
||||
}
|
||||
});
|
||||
allModels.files.forEach(item => {
|
||||
setNoteBook(() => {
|
||||
item.init(false);
|
||||
if (onlyUpdateDoc) {
|
||||
allModels.files.forEach(item => {
|
||||
setNoteBook(() => {
|
||||
item.init(false);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
allModels.bookmark.forEach(item => {
|
||||
item.update();
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue