This commit is contained in:
Vanessa 2022-11-12 00:22:47 +08:00
parent 62298ca129
commit fbf9ee09bb

View file

@ -343,7 +343,7 @@ export class Files extends Model {
return; return;
} }
const liElement = hasClosestByTag(event.target, "LI"); const liElement = hasClosestByTag(event.target, "LI");
if (!liElement || !window.siyuan.dragElement || liElement.classList.contains("b3-list-item--focus")) { if (!liElement || !window.siyuan.dragElement) {
event.preventDefault(); event.preventDefault();
return; return;
} }
@ -356,6 +356,10 @@ export class Files extends Model {
event.preventDefault(); event.preventDefault();
return; return;
} }
// 允许标题拖拽到文档树的选中文档上 https://github.com/siyuan-note/siyuan/issues/6552
if (liElement.classList.contains("b3-list-item--focus")) {
return;
}
let sourceOnlyRoot = true; let sourceOnlyRoot = true;
Array.from(this.element.querySelectorAll(".b3-list-item--focus")).find((item: HTMLElement) => { Array.from(this.element.querySelectorAll(".b3-list-item--focus")).find((item: HTMLElement) => {
if (item.getAttribute("data-type") === "navigation-file") { if (item.getAttribute("data-type") === "navigation-file") {