aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation-page/conversation-page.js
diff options
context:
space:
mode:
authorHJ <spam@hjkos.com>2019-01-22 17:46:08 +0000
committerHJ <spam@hjkos.com>2019-01-22 17:46:08 +0000
commit3a3cf1d48a67c82bb2c94cafb0150b1fa8e4de1a (patch)
tree5e39bb41c1e73191b2ff6222eee8720420f13dfd /src/components/conversation-page/conversation-page.js
parent7651290e2be72ed35d7582757251eb151fdce953 (diff)
parent92dedcd53e56562205e704eea2754f159eb9707d (diff)
Merge branch 'favorites' into 'develop'
Add Favorites TL to user profile, add some initial support for MastoAPI Closes #265 and #262 See merge request pleroma/pleroma-fe!462
Diffstat (limited to 'src/components/conversation-page/conversation-page.js')
-rw-r--r--src/components/conversation-page/conversation-page.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/conversation-page/conversation-page.js b/src/components/conversation-page/conversation-page.js
index beffa5bb..8f1ac3d9 100644
--- a/src/components/conversation-page/conversation-page.js
+++ b/src/components/conversation-page/conversation-page.js
@@ -1,5 +1,5 @@
import Conversation from '../conversation/conversation.vue'
-import { find, toInteger } from 'lodash'
+import { find } from 'lodash'
const conversationPage = {
components: {
@@ -7,7 +7,7 @@ const conversationPage = {
},
computed: {
statusoid () {
- const id = toInteger(this.$route.params.id)
+ const id = this.$route.params.id
const statuses = this.$store.state.statuses.allStatuses
const status = find(statuses, {id})