Skip to content

Commit

Permalink
[release-2.10] Fix the display error in the comments page status filt…
Browse files Browse the repository at this point in the history
…er text (#4754)

This is an automated cherry-pick of #4743

/assign ruibaby

```release-note
修复 Console 端评论状态筛选无法显示筛选结果的问题
```
  • Loading branch information
halo-dev-bot authored Oct 19, 2023
1 parent 26bcf43 commit 3f3e5ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions console/src/modules/contents/comments/CommentList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ const handleApproveInBatch = async () => {
},
{
label: t('core.comment.filters.status.items.approved'),
value: 'true',
value: true,
},
{
label: t(
'core.comment.filters.status.items.pending_review'
),
value: 'false',
value: false,
},
]"
/>
Expand Down

0 comments on commit 3f3e5ee

Please sign in to comment.