mirror of https://github.com/halo-dev/halo
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
parent
ff7af9f0d9
commit
4af82712e1
|
@ -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,
|
||||
},
|
||||
]"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue