fix: remove obsolete watchEffect
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dominik Pschenitschni 2022-04-10 01:50:20 +02:00
parent 27bee500f2
commit 805a4740df
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 3 additions and 10 deletions

View File

@ -47,7 +47,7 @@
</template>
<script setup lang="ts">
import {ref, computed, watch, watchEffect} from 'vue'
import {ref, computed, watch} from 'vue'
import {useRoute} from 'vue-router'
import Message from '@/components/misc/message.vue'
@ -95,17 +95,10 @@ const currentList = computed(() => {
// of it, most likely due to the rights not being properly populated.
watch(
() => props.listId,
(listId) => {
loadList(listId)
},
{
immediate: true,
},
listId => loadList(listId),
{immediate: true},
)
// call the method again if the listId changes
watchEffect(() => loadList(props.listId))
useTitle(() => currentList.value.id ? getListTitle(currentList.value) : '')
async function loadList(listIdToLoad: number) {