Skip to content

Commit

Permalink
Fix filter view
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Wang <i@ryanc.cc>
  • Loading branch information
ruibaby committed Jul 20, 2023
1 parent be1fe72 commit 4539183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions console/src/modules/contents/comments/CommentList.vue
Expand Up @@ -271,13 +271,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 4539183

Please sign in to comment.