fix: lint
This commit is contained in:
parent
b7a976a9cf
commit
a055a3ea52
1 changed files with 2 additions and 2 deletions
|
@ -95,12 +95,12 @@ const currentList = computed(() => {
|
||||||
// of it, most likely due to the rights not being properly populated.
|
// of it, most likely due to the rights not being properly populated.
|
||||||
watch(
|
watch(
|
||||||
() => props.listId,
|
() => props.listId,
|
||||||
(listId, prevListId) => {
|
(listId) => {
|
||||||
loadList(listId)
|
loadList(listId)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
immediate: true,
|
immediate: true,
|
||||||
}
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
// call the method again if the listId changes
|
// call the method again if the listId changes
|
||||||
|
|
Loading…
Reference in a new issue