why did i do that
This commit is contained in:
parent
307b4ba698
commit
ee94a6732a
1 changed files with 5 additions and 0 deletions
|
@ -93,6 +93,11 @@ const conversation = {
|
||||||
statuses.forEach(status => this.relevantIds.push(status.id))
|
statuses.forEach(status => this.relevantIds.push(status.id))
|
||||||
})
|
})
|
||||||
.then(() => this.setHighlight(this.statusId))
|
.then(() => this.setHighlight(this.statusId))
|
||||||
|
} else {
|
||||||
|
const id = this.$route.params.id
|
||||||
|
this.$store.state.api.backendInteractor.fetchStatus({id})
|
||||||
|
.then((status) => this.$store.dispatch('addNewStatuses', { statuses: [status] }))
|
||||||
|
.then(() => this.fetchConversation())
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getReplies (id) {
|
getReplies (id) {
|
||||||
|
|
Loading…
Reference in a new issue