mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-06 10:20:26 +02:00
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…
Add table
Add a link
Reference in a new issue