fix error in dragdrop logic

This commit is contained in:
AUTOMATIC 2023-05-22 15:40:10 +03:00
parent ee65e72931
commit cc2f6e3b7b
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ function eventHasFiles(e) {
}
function dragDropTargetIsPrompt(target) {
if (!(target?.placeholder?.indexOf("Prompt") >= 0)) return true;
if (target?.parentNode?.parentNode) return true;
if (target?.placeholder && target?.placeholder.indexOf("Prompt") >= 0) return true;
if (target?.parentNode?.parentNode?.className?.indexOf("prompt") > 0) return true;
return false;
}