fix(tasks): don't load tasks multiple times when viewing list or gantt view
This commit is contained in:
parent
3c1041902e
commit
78d4a518a3
@ -48,6 +48,9 @@ const value = computed({
|
|||||||
return props.modelValue
|
return props.modelValue
|
||||||
},
|
},
|
||||||
set(value) {
|
set(value) {
|
||||||
|
if(props.modelValue === value) {
|
||||||
|
return
|
||||||
|
}
|
||||||
emit('update:modelValue', value)
|
emit('update:modelValue', value)
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user