chore: remove unneeded var

This commit is contained in:
Dominik Pschenitschni 2021-10-02 20:27:35 +02:00
parent 4ae18ec162
commit 6fee114610
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 0 additions and 2 deletions

View File

@ -48,7 +48,6 @@ export default {
data() {
return {
listService: new ListService(),
list: new ListModel(),
listLoaded: 0,
}
},
@ -142,7 +141,6 @@ export default {
const list = new ListModel(listData)
this.listService.get(list)
.then(r => {
this.list = r
this.$store.commit(CURRENT_LIST, r)
this.setTitle(this.getListTitle(r))
})