fix status mutes
This commit is contained in:
parent
af9492977a
commit
8b1aa593a4
2 changed files with 3 additions and 2 deletions
|
@ -238,7 +238,8 @@ export const getters = {
|
|||
return result
|
||||
},
|
||||
relationship: state => id => {
|
||||
return state.relationships[id] || { id, loading: true }
|
||||
const rel = id && state.relationships[id]
|
||||
return rel || { id, loading: true }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue