From aefce30048cc0f88ed62e8041b017cea592938c1 Mon Sep 17 00:00:00 2001 From: Lansong <62054128+Lansongxx@users.noreply.github.com> Date: Fri, 29 Mar 2024 13:35:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8E=A8=E8=8D=90?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=B2=89=E4=B8=9D=E6=95=B0=E9=87=8F=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E7=9A=84BUG=20(#149)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ src/views/home/show-recommend.vue | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9e682e..3e049f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ * 修复推荐页面帖子无法显示的BUG +* 修复推荐页面粉丝数量显示的BUG + ## 2024-03-28 ### 🐛 Bug Fixes | Bug 修复 diff --git a/src/views/home/show-recommend.vue b/src/views/home/show-recommend.vue index 76d10d5..80a8584 100644 --- a/src/views/home/show-recommend.vue +++ b/src/views/home/show-recommend.vue @@ -216,7 +216,8 @@ const getShow = () => { url: user.url, description: user.description, followCount: user.followCount, - labels: user.labels + labels: user.labels, + followed: user.followed })) } return @@ -242,7 +243,8 @@ const getShow = () => { url: user.url, description: user.description, followCount: user.followCount, - labels: user.labels + labels: user.labels, + followed: user.followed })) }; storageContent.value[index] = res.recommends.users