Skip to content

Commit cb93c64

Browse files
authored
fix: moderation checklist showing for unlisted status (#5875)
* fix: moderation checklist showing for unlisted status * refactor: remove unused function
1 parent eebb353 commit cb93c64

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/frontend/src/pages/[type]/[id].vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,8 +443,8 @@
443443
<ModerationProjectNags
444444
v-if="
445445
projectV3 &&
446-
((currentMember && project.status === 'draft') ||
447-
tags.rejectedStatuses.includes(project.status))
446+
currentMember &&
447+
(project.status === 'draft' || tags.rejectedStatuses.includes(project.status))
448448
"
449449
:project="project"
450450
:project-v3="projectV3"

0 commit comments

Comments
 (0)