fix(task): update task description when switching between related tasks
All checks were successful
continuous-integration/drone/push Build is passing

Resolves #2936
This commit is contained in:
kolaente 2023-01-12 12:22:56 +01:00
parent 3b99facbfe
commit 5999def569
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -67,7 +67,7 @@ const taskStore = useTaskStore()
const loading = computed(() => taskStore.isLoading) const loading = computed(() => taskStore.isLoading)
watch( watch(
() => props.modelValue, props.modelValue,
(value) => { (value) => {
task.value = value task.value = value
}, },