diff --git a/app/assets/javascripts/discourse/app/components/reviewable-item.hbs b/app/assets/javascripts/discourse/app/components/reviewable-item.hbs index dc070a4a2ce..bd3619c0387 100644 --- a/app/assets/javascripts/discourse/app/components/reviewable-item.hbs +++ b/app/assets/javascripts/discourse/app/components/reviewable-item.hbs @@ -68,7 +68,12 @@ {{/if}} - {{#if (eq this.reviewable.type "ReviewableFlaggedPost")}} + {{#if + (or + (eq this.reviewable.type "ReviewableFlaggedPost") + (eq this.reviewable.type "ReviewableChatMessage") + ) + }} {{#if (eq this.reviewable.status 0)}}

{{this.reviewable.flaggedPostContextQuestion}} diff --git a/app/assets/stylesheets/common/base/reviewables.scss b/app/assets/stylesheets/common/base/reviewables.scss index 8fd4da59624..3eaa39270cd 100644 --- a/app/assets/stylesheets/common/base/reviewables.scss +++ b/app/assets/stylesheets/common/base/reviewables.scss @@ -231,10 +231,13 @@ font-size: var(--font-down-2); color: var(--secondary); border-radius: 8px; + background-color: var(--secondary-high); &.-flagged-post, &.-flagged-chat-message, &.-akismet-flagged-post, - &.-akismet-flagged-user { + &.-akismet-flagged-user, + &.-ai-flagged-post, + &.-ai-flagged-chat-message { background-color: var(--danger-medium); } &.-queued-post,