Show who to follow in the mobile view
3 unresolved threads
Merged
requested to merge hakabahitoyo/pleroma-fe:feature/show-who-to-follow-in-mobile-view into develop
3 unresolved threads
After !443 (merged), instance specific panel, features panel, and who to follow panel are missing in the mobile view. In this MR, full who-to-follow list is shown in /who-to-follow
endpoint.
Edited by Hakaba Hitoyo
Merge request reports
Activity
16 16 import UserPanel from 'components/user_panel/user_panel.vue' 17 17 import LoginForm from 'components/login_form/login_form.vue' 18 18 import ChatPanel from 'components/chat_panel/chat_panel.vue' 19 import WhoToFollowPage from 'components/who_to_follow_page/who_to_follow_page.vue' changed this line in version 3 of the diff
- Resolved by Shpuld Shpludson
- Resolved by Shpuld Shpludson
added 3 commits
-
b5773bb8...1fb9ceb5 - 2 commits from branch
pleroma:develop
- fe2326f1 - merge
-
b5773bb8...1fb9ceb5 - 2 commits from branch
2 import UserCard from '../user_card/user_card.vue' 3 4 const WhoToFollow = { 5 components: { 6 UserCard 7 }, 8 data () { 9 return { 10 users: [] 11 } 12 }, 13 mounted () { 14 this.getWhoToFollow(this) 15 }, 16 methods: { 17 showWhoToFollow (panel, reply) { changed this line in version 5 of the diff
10 users: [] 11 } 12 }, 13 mounted () { 14 this.getWhoToFollow(this) 15 }, 16 methods: { 17 showWhoToFollow (panel, reply) { 18 reply.forEach((i, index) => { 19 const user = { 20 id: 0, 21 name: i.display_name, 22 screen_name: i.acct, 23 profile_image_url: i.avatar || '/images/avi.png' 24 } 25 panel.users.push(user) changed this line in version 5 of the diff
mentioned in commit ea1d21aa
Please register or sign in to reply