From 809d872b2d23b5939c333333b796ce61b8b4c7ea Mon Sep 17 00:00:00 2001 From: Hakaba Hitoyo Date: Tue, 4 Jun 2019 08:04:47 +0000 Subject: [PATCH 1/2] Fix/Small fix in the who to follow page --- src/components/who_to_follow/who_to_follow.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/who_to_follow/who_to_follow.js b/src/components/who_to_follow/who_to_follow.js index be0b8827..7ae602a2 100644 --- a/src/components/who_to_follow/who_to_follow.js +++ b/src/components/who_to_follow/who_to_follow.js @@ -20,7 +20,8 @@ const WhoToFollow = { id: 0, name: i.display_name, screen_name: i.acct, - profile_image_url: i.avatar || '/images/avi.png' + profile_image_url: i.avatar || '/images/avi.png', + profile_image_url_original: i.avatar || '/images/avi.png' } this.users.push(user) From 5b274364ce677ab94e52f2a8244f4de10f19ee91 Mon Sep 17 00:00:00 2001 From: Hakaba Hitoyo Date: Wed, 5 Jun 2019 17:43:35 +0000 Subject: [PATCH 2/2] Small improve of the who to follow panel layout --- .../who_to_follow_panel.vue | 24 ++++++++++++++----- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/src/components/who_to_follow_panel/who_to_follow_panel.vue b/src/components/who_to_follow_panel/who_to_follow_panel.vue index 25e3a9f6..74e82789 100644 --- a/src/components/who_to_follow_panel/who_to_follow_panel.vue +++ b/src/components/who_to_follow_panel/who_to_follow_panel.vue @@ -6,14 +6,18 @@ {{$t('who_to_follow.who_to_follow')}} -
- +
+

{{user.name}}
- - {{$t('who_to_follow.more')}} +

+

+ + {{$t('who_to_follow.more')}} + +

@@ -30,11 +34,19 @@ height: 32px; } .who-to-follow { - padding: 0.5em 1em 0.5em 1em; + padding: 0em 1em; margin: 0px; - line-height: 40px; + } + .who-to-follow-items { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; + padding: 0px; + margin: 1em 0em; + } + .who-to-follow-more { + padding: 0px; + margin: 1em 0em; + text-align: center; }