mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-02 07:30:49 +08:00
This commit is contained in:
parent
35ccbaa0f0
commit
f67bd1ad7f
@ -780,7 +780,12 @@ export class Files extends Model {
|
||||
currentPath = dirname + ".sy";
|
||||
}
|
||||
} else {
|
||||
liElement.querySelector(".fn__hidden")?.classList.remove("fn__hidden");
|
||||
const hiddenElement = liElement.querySelector(".fn__hidden")
|
||||
if (hiddenElement) {
|
||||
hiddenElement.classList.remove("fn__hidden");
|
||||
} else {
|
||||
this.getLeaf(liElement, notebookId, true);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -293,7 +293,12 @@ export class MobileFiles extends Model {
|
||||
currentPath = dirname + ".sy";
|
||||
}
|
||||
} else {
|
||||
liElement.querySelector(".fn__hidden")?.classList.remove("fn__hidden");
|
||||
const hiddenElement = liElement.querySelector(".fn__hidden")
|
||||
if (hiddenElement) {
|
||||
hiddenElement.classList.remove("fn__hidden");
|
||||
} else {
|
||||
this.getLeaf(liElement, notebookId, true);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -229,7 +229,7 @@ export class Toolbar {
|
||||
|
||||
public setInlineMark(protyle: IProtyle, type: string, action: "range" | "toolbar", textObj?: ITextOption) {
|
||||
const nodeElement = hasClosestBlock(this.range.startContainer);
|
||||
if (!nodeElement) {
|
||||
if (!nodeElement || nodeElement.getAttribute("data-type") === "NodeCodeBlock") {
|
||||
return;
|
||||
}
|
||||
const endElement = hasClosestBlock(this.range.endContainer);
|
||||
|
Loading…
Reference in New Issue
Block a user