fix: use strict comparison
This commit is contained in:

committed by
konrad

parent
dea1789a00
commit
91e9eef582
@ -427,7 +427,7 @@ async function updateTaskPosition(e) {
|
|||||||
taskAfter !== null ? taskAfter.kanbanPosition : null,
|
taskAfter !== null ? taskAfter.kanbanPosition : null,
|
||||||
)
|
)
|
||||||
if (
|
if (
|
||||||
oldBucket != undefined && // This shouldn't actually be `undefined`, but let's play it safe.
|
oldBucket !== undefined && // This shouldn't actually be `undefined`, but let's play it safe.
|
||||||
newBucket.id !== oldBucket.id &&
|
newBucket.id !== oldBucket.id &&
|
||||||
newBucket.isDoneBucket !== oldBucket.isDoneBucket
|
newBucket.isDoneBucket !== oldBucket.isDoneBucket
|
||||||
) {
|
) {
|
||||||
|
Reference in New Issue
Block a user