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

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
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import {ref,computed, watch, type PropType} from 'vue' import {ref, computed, watch, type PropType} from 'vue'
import CustomTransition from '@/components/misc/CustomTransition.vue' import CustomTransition from '@/components/misc/CustomTransition.vue'
import Editor from '@/components/input/AsyncEditor' import Editor from '@/components/input/AsyncEditor'
@ -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
}, },