Closed
Description
In biglist_modules in actions section
change payload.id
to payload[_id]
db[name].where(_id).equals(payload.id).first().then((entity) => {
commit(types[`${NAME}_SELECT`], entity)
})
to
db[name].where(_id).equals(payload[_id]).first().then((entity) => {
commit(types[`${NAME}_SELECT`], entity)
})