diff --git a/apps/frontend/src/components/ui/moderation/ModerationTechRevCard.vue b/apps/frontend/src/components/ui/moderation/ModerationTechRevCard.vue index 07991f83d4..cf799fff26 100644 --- a/apps/frontend/src/components/ui/moderation/ModerationTechRevCard.vue +++ b/apps/frontend/src/components/ui/moderation/ModerationTechRevCard.vue @@ -565,7 +565,7 @@ const expandedClasses = reactive>(new Set()) const autoExpandedFileIds = reactive>(new Set()) const showCopyFeedback = reactive>(new Map()) const highlightedSourceCache = reactive>(new Map()) -const LAZY_LOAD_CLASS_SOURCE_MINIMUM = 10 +const LAZY_LOAD_CLASS_SOURCE_MINIMUM = 2 interface ClassGroup { key: string diff --git a/apps/frontend/src/components/ui/thread/ConversationThread.vue b/apps/frontend/src/components/ui/thread/ConversationThread.vue index f755c15d18..c5b6545af9 100644 --- a/apps/frontend/src/components/ui/thread/ConversationThread.vue +++ b/apps/frontend/src/components/ui/thread/ConversationThread.vue @@ -152,7 +152,7 @@ v-if="sortedMessages.length > 0" :disabled="!replyBody || isLoading" @click=" - isApproved(project) + isApproved(project) && !isStaff(auth.user) ? openReplyModal() : runBlockingAction('reply', () => sendReply()) " @@ -169,7 +169,7 @@ v-else :disabled="!replyBody || isLoading" @click=" - isApproved(project) + isApproved(project) && !isStaff(auth.user) ? openReplyModal() : runBlockingAction('send', () => sendReply()) " diff --git a/apps/frontend/src/pages/moderation/reports/index.vue b/apps/frontend/src/pages/moderation/reports/index.vue index d4c09c21b0..6c159962f3 100644 --- a/apps/frontend/src/pages/moderation/reports/index.vue +++ b/apps/frontend/src/pages/moderation/reports/index.vue @@ -17,42 +17,81 @@ -
+
-