onDragOver(e, col)}
ondragleave={onDragLeave}
ondrop={(e) => onDrop(e, col)}
role="list"
aria-label="{COL_LABELS[col]} column"
>
{#each getTasksByCol()[col] ?? [] as task (task.id)}
onDragStart(e, task.id)}
ondragend={onDragEnd}
role="listitem"
>
{#if task.description}
{task.description}
{/if}
{#if task.assignedTo}
@
{task.assignedTo}
{/if}
{/each}