Skip to content

Commit

Permalink
fix: 修复推荐页面粉丝数量显示的BUG (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lansongxx authored Mar 29, 2024
1 parent b5eddb1 commit aefce30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

* 修复推荐页面帖子无法显示的BUG

* 修复推荐页面粉丝数量显示的BUG

## 2024-03-28

### 🐛 Bug Fixes | Bug 修复
Expand Down
6 changes: 4 additions & 2 deletions src/views/home/show-recommend.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit aefce30

Please sign in to comment.