diff --git a/src/app/board/column/column.component.ts b/src/app/board/column/column.component.ts index c18b38d..3bdfb53 100644 --- a/src/app/board/column/column.component.ts +++ b/src/app/board/column/column.component.ts @@ -260,6 +260,8 @@ export class ColumnDisplayComponent implements OnInit, OnDestroy { return; } + newTask.position = this.columnData.tasks.length + 1; + this.boardService.addTask(newTask) .subscribe((response: ApiResponse) => { response.alerts.forEach(note => this.notes.add(note));