richard_wiltshire PRO said 4 months ago on Kanban from Scratch :
Hey David! Tons of fun! One of your best! I am looking forward to the next video.

I added a leave function to update the "is-dragging-over." It can be use to highlight the potential drop columns.

handleDragLeave(event) {
    event.preventDefault()
    event.currentTarget.classList.remove("is-dragging-over")
}