Fix who to follow panel shuffling

This commit is contained in:
Hakaba Hitoyo 2019-01-24 15:17:35 +00:00 committed by Shpuld Shpludson
parent 9305dad005
commit efa0c85ac0
1 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
import apiService from '../../services/api/api.service.js'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
import _ from 'lodash'
import { shuffle } from 'lodash'
function showWhoToFollow (panel, reply) {
_.shuffle(reply)
const shuffled = shuffle(reply)
panel.usersToFollow.forEach((toFollow, index) => {
let user = reply[index]
let user = shuffled[index]
let img = user.avatar || '/images/avi.png'
let name = user.acct