fix: removing a label from a task
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2022-02-26 12:57:59 +01:00
parent 9a55482681
commit 1256c37b69
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ export default {
},
async removeLabel(label) {
if (!this.taskId === 0) {
if (this.taskId !== 0) {
await this.$store.dispatch('tasks/removeLabel', {label: label, taskId: this.taskId})
}