1
0

chore: better variable typing

This commit is contained in:
Dominik Pschenitschni
2022-06-23 03:28:48 +02:00
parent 6f93d6343c
commit 42e72d14a4
7 changed files with 10 additions and 8 deletions

View File

@ -63,7 +63,7 @@ async function createNewList() {
}
showError.value = false
list.namespaceId = parseInt(route.params.namespaceId)
list.namespaceId = Number(route.params.namespaceId as string)
const newList = await store.dispatch('lists/createList', list)
await router.push({
name: 'list.index',