Fix the display error in the comments page status filter text (#4743)

#### 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 端评论状态筛选无法显示筛选结果的问题
```
pull/4758/head
zjy4fun 2023-10-19 16:36:25 +08:00 committed by GitHub
parent ff7af9f0d9
commit 4af82712e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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,
},
]"
/>