diff --git a/website/client/components/tasks/column.vue b/website/client/components/tasks/column.vue index 130468cf22..ebcdb873b6 100644 --- a/website/client/components/tasks/column.vue +++ b/website/client/components/tasks/column.vue @@ -482,7 +482,7 @@ export default { const newIndexOnServer = originTasks.findIndex(taskId => taskId === taskIdToReplace); let newOrder; - if (taskToMove.group.id) { + if (taskToMove.group.id && !this.isUser) { newOrder = await this.$store.dispatch('tasks:moveGroupTask', { taskId: taskIdToMove, position: newIndexOnServer,