Make sure to make the list id from the route an int to not fail the comparison
This commit is contained in:
@ -16,7 +16,7 @@ export default {
|
||||
}),
|
||||
mutations: {
|
||||
setListId(state, listId) {
|
||||
state.listId = listId
|
||||
state.listId = parseInt(listId)
|
||||
},
|
||||
setBuckets(state, buckets) {
|
||||
state.buckets = buckets
|
||||
|
Reference in New Issue
Block a user