fixed check for undefined
This commit is contained in:
parent
1fdd6ae7e4
commit
4083042f49
1 changed files with 2 additions and 3 deletions
|
@ -282,13 +282,12 @@
|
|||
// before setDraggedTask.
|
||||
// Once taskDragged is not empty, we run the actual code and cancel the timeout loop.
|
||||
// This is pretty ugly...
|
||||
if(this.taskDragged !== null && this.taskDragged !== undefined) {
|
||||
clearInterval(tt)
|
||||
} else {
|
||||
if(this.taskDragged === null || typeof this.taskDragged === 'undefined') {
|
||||
// eslint-disable-next-line
|
||||
console.log('fckin js')
|
||||
return
|
||||
}
|
||||
clearInterval(tt)
|
||||
|
||||
if(this.isTaskEdit) {
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue