removing unnecessary conversions since it should already be converted in normalizer

This commit is contained in:
Henry Jameson 2019-01-17 23:08:44 +03:00
parent 8172eeb1e0
commit 80a7035154
4 changed files with 7 additions and 9 deletions

View file

@ -7,7 +7,7 @@ const conversationPage = {
},
computed: {
statusoid () {
const id = String(this.$route.params.id)
const id = this.$route.params.id
const statuses = this.$store.state.statuses.allStatuses
const status = find(statuses, {id})