Skip to content

Commit

Permalink
fix(forum): 修复我的反馈页显示无关反馈的的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
jiazengp committed Jan 16, 2025
1 parent 293f64a commit 4ea2a12
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .vitepress/theme/apis/forum/gitee/issues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,11 @@ export const getUserCreatedTopics = async (
)

return {
data: issueList.map((val) => normalizeIssue(val)),
data: issueList
.filter(
(val) => val.repository.full_name === GITEE_OWNER + '/' + GITEE_REPO,
)
.map((val) => normalizeIssue(val)),
...paginationParams!,
}
}
Expand Down

0 comments on commit 4ea2a12

Please sign in to comment.