Fix remote host getter (#94)
* Lib build fix $te ref * Error accesing host
This commit is contained in:
parent
cc4a325fa4
commit
6b19246fec
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ export const getters = getterTree(state, {
|
||||||
return state.id !== ''
|
return state.id !== ''
|
||||||
},
|
},
|
||||||
host: (state, getters, root) => {
|
host: (state, getters, root) => {
|
||||||
return root.user.member[state.id] || null
|
return root.user.members[state.id] || null
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue