Fix remote host getter (#94)

* Lib build fix $te ref

* Error accesing host
This commit is contained in:
Gustavo Brian 2021-10-05 19:05:54 +02:00 committed by GitHub
parent cc4a325fa4
commit 6b19246fec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ export const getters = getterTree(state, {
return state.id !== ''
},
host: (state, getters, root) => {
return root.user.member[state.id] || null
return root.user.members[state.id] || null
},
})