mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-02-28 05:32:52 +00:00
This commit is contained in:
@@ -343,7 +343,7 @@ export class Files extends Model {
|
||||
return;
|
||||
}
|
||||
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();
|
||||
return;
|
||||
}
|
||||
@@ -356,6 +356,10 @@ export class Files extends Model {
|
||||
event.preventDefault();
|
||||
return;
|
||||
}
|
||||
// 允许标题拖拽到文档树的选中文档上 https://github.com/siyuan-note/siyuan/issues/6552
|
||||
if (liElement.classList.contains("b3-list-item--focus")) {
|
||||
return;
|
||||
}
|
||||
let sourceOnlyRoot = true;
|
||||
Array.from(this.element.querySelectorAll(".b3-list-item--focus")).find((item: HTMLElement) => {
|
||||
if (item.getAttribute("data-type") === "navigation-file") {
|
||||
|
||||
Reference in New Issue
Block a user