logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 3492ab66973616bdf0beede3c3b3f05f476c3743
parent: 9305dad0057bc3a729b338fa11aa0f867dbb6c2f
Author: Shpuld Shpludson <shp@cock.li>
Date:   Thu, 24 Jan 2019 15:17:35 +0000

Merge branch 'fix-who-to-follow-panel-shuffling' into 'develop'

Fix who to follow panel shuffling

See merge request pleroma/pleroma-fe!470

Diffstat:

Msrc/components/who_to_follow_panel/who_to_follow_panel.js6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/who_to_follow_panel/who_to_follow_panel.js b/src/components/who_to_follow_panel/who_to_follow_panel.js @@ -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