aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.js
diff options
context:
space:
mode:
authoreal <eal@waifu.club>2017-08-23 19:21:15 +0300
committereal <eal@waifu.club>2017-08-23 19:21:15 +0300
commite1ec01dc3ef90c0dc033d2e648da9a2acf8a1bdd (patch)
tree9aa1bdab21827edee5b8d1cccdaf11c8ad9f0358 /src/components/timeline/timeline.js
parentccfc2e57d0e265bddc88d5ace30428268f3b1df1 (diff)
Appease linter.
Diffstat (limited to 'src/components/timeline/timeline.js')
-rw-r--r--src/components/timeline/timeline.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
index 7a590865..06435745 100644
--- a/src/components/timeline/timeline.js
+++ b/src/components/timeline/timeline.js
@@ -8,7 +8,6 @@ const Timeline = {
'timeline',
'timelineName',
'title',
- 'showingStatuses',
'userId'
],
computed: {
@@ -66,12 +65,12 @@ const Timeline = {
userId: this.userId
}).then(() => store.commit('setLoading', { timeline: this.timelineName, value: false }))
},
- fetchFollowers() {
+ fetchFollowers () {
const id = this.userId
this.$store.state.api.backendInteractor.fetchFollowers({ id })
.then((followers) => this.$store.dispatch('addFollowers', { followers }))
},
- fetchFriends() {
+ fetchFriends () {
const id = this.userId
this.$store.state.api.backendInteractor.fetchFriends({ id })
.then((friends) => this.$store.dispatch('addFriends', { friends }))