Skip to content

Commit

Permalink
Fix the display error in the comments page status filter text (#4743)
Browse files Browse the repository at this point in the history
#### What type of PR is this?

/kind bug
/area console

#### What this PR does / why we need it:

![fix-status-filter-2](https://github.com/halo-dev/halo/assets/106857035/e1f0a7ea-1328-45f2-ad06-cf14e91b8e4a)


#### Which issue(s) this PR fixes:

Fixes #4731

#### Special notes for your reviewer:


#### Does this PR introduce a user-facing change?

```release-note
修复 Console 端评论状态筛选无法显示筛选结果的问题
```
  • Loading branch information
zjy4fun authored Oct 19, 2023
1 parent ff7af9f commit 4af8271
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 4af8271

Please sign in to comment.