Merge branch 'develop' into 'develop'

use es6 notation for exportFollows

See merge request pleroma/pleroma-fe!263
This commit is contained in:
lambda 2018-05-18 10:45:08 +00:00
commit 5da881e98d
1 changed files with 2 additions and 2 deletions

View File

@ -165,9 +165,9 @@ const UserSettings = {
this.enableFollowsExport = false
this.$store.state.api.backendInteractor
.fetchFriends({id: this.$store.state.users.currentUser.id})
.then(function (friendList) {
.then((friendList) => {
this.exportPeople(friendList, 'friends.csv')
}.bind(this))
})
},
followListChange () {
// eslint-disable-next-line no-undef