From ea2f72ab6407756b52e015c603222740442bccc7 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 10 Nov 2023 10:41:13 -0500 Subject: [PATCH] oops --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 68ffd6d..8a76bd4 100644 --- a/app.js +++ b/app.js @@ -14,7 +14,7 @@ for (li of lis) { }) li.addEventListener('drop', (event)=>{ event.target.classList.remove('dragging'); - event.target.children[0].appendChild(currentDraggedItem) + event.target.children[1].appendChild(currentDraggedItem) }) }