fixed check for undefined

This commit is contained in:
konrad 2019-06-29 23:12:49 +02:00
parent 1fdd6ae7e4
commit 4083042f49
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 3 deletions

View File

@ -282,13 +282,12 @@
// before setDraggedTask. // before setDraggedTask.
// Once taskDragged is not empty, we run the actual code and cancel the timeout loop. // Once taskDragged is not empty, we run the actual code and cancel the timeout loop.
// This is pretty ugly... // This is pretty ugly...
if(this.taskDragged !== null && this.taskDragged !== undefined) { if(this.taskDragged === null || typeof this.taskDragged === 'undefined') {
clearInterval(tt)
} else {
// eslint-disable-next-line // eslint-disable-next-line
console.log('fckin js') console.log('fckin js')
return return
} }
clearInterval(tt)
if(this.isTaskEdit) { if(this.isTaskEdit) {
return return