Browser-agnostic fix for dragging Operations to Favorites, so this also works on Safari.

This commit is contained in:
Leon Zandman 2026-03-21 16:29:52 +01:00
parent 8c41518a9b
commit 2ddc79835e

View File

@ -163,7 +163,7 @@ class RecipeWaiter {
* @param {event} e
*/
favDragover(e) {
if (e.dataTransfer.effectAllowed !== "move")
if (!this.dragInProgress)
return false;
e.stopPropagation();