fix(kanban): reset loading state after creating a task
continuous-integration/drone/push Build is passing Details

Resolves: #2184
This commit is contained in:
kolaente 2022-07-21 15:57:03 +02:00
parent 4c560f1a03
commit cb3f269937
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 4 additions and 2 deletions

View File

@ -291,7 +291,7 @@ export default {
listId,
position,
}) {
setLoading({commit}, 'tasks')
const cancel = setLoading({commit}, 'tasks')
const parsedTask = parseTaskText(title, getQuickAddMagicMode())
const foundListId = await dispatch('findListId', {
@ -321,10 +321,12 @@ export default {
const taskService = new TaskService()
const createdTask = await taskService.create(task)
return dispatch('addLabelsToTask', {
const result = await dispatch('addLabelsToTask', {
task: createdTask,
parsedLabels: parsedTask.labels,
})
cancel()
return result
},
},
}