chore: remove unneeded var
This commit is contained in:
parent
4ae18ec162
commit
6fee114610
1 changed files with 0 additions and 2 deletions
|
@ -48,7 +48,6 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
listService: new ListService(),
|
listService: new ListService(),
|
||||||
list: new ListModel(),
|
|
||||||
listLoaded: 0,
|
listLoaded: 0,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -142,7 +141,6 @@ export default {
|
||||||
const list = new ListModel(listData)
|
const list = new ListModel(listData)
|
||||||
this.listService.get(list)
|
this.listService.get(list)
|
||||||
.then(r => {
|
.then(r => {
|
||||||
this.list = r
|
|
||||||
this.$store.commit(CURRENT_LIST, r)
|
this.$store.commit(CURRENT_LIST, r)
|
||||||
this.setTitle(this.getListTitle(r))
|
this.setTitle(this.getListTitle(r))
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue