diff --git a/apps/frontend/src/app/components/admin-reports/admin-reports.component.ts b/apps/frontend/src/app/components/admin-reports/admin-reports.component.ts index 9edffab..000affc 100644 --- a/apps/frontend/src/app/components/admin-reports/admin-reports.component.ts +++ b/apps/frontend/src/app/components/admin-reports/admin-reports.component.ts @@ -683,7 +683,7 @@ import { ProfileReportWithUsers, CommentReportWithDetails, ReportStatus, ReportR [(ngModel)]="profileEditForm.primaryBadge" class="form-control" > - + @if (editingProfile()?.profile?.badges.isStaff) { } @@ -697,7 +697,7 @@ import { ProfileReportWithUsers, CommentReportWithDetails, ReportStatus, ReportR } - Choose one badge to display on profile, or show all + Choose one badge to display on profile and comments diff --git a/apps/frontend/src/app/components/comment-display/comment-display.component.ts b/apps/frontend/src/app/components/comment-display/comment-display.component.ts index 5008691..781ee5a 100644 --- a/apps/frontend/src/app/components/comment-display/comment-display.component.ts +++ b/apps/frontend/src/app/components/comment-display/comment-display.component.ts @@ -40,20 +40,6 @@ import { ReportModalComponent } from '../report-modal/report-modal.component'; @if (comment.user.primaryBadge === PrimaryBadge.DISCORD && comment.user.inDiscord) { Discord } - } @else { - - @if (comment.user.isStaff) { - Staff - } - @if (comment.user.isMod) { - Mod - } - @if (comment.user.isVip) { - VIP - } - @if (comment.user.inDiscord) { - Discord - } } {{ formatDate(comment.createdAt) }} @if (canEditComment(comment)) { diff --git a/apps/frontend/src/app/components/profile/profile.component.ts b/apps/frontend/src/app/components/profile/profile.component.ts index 3d3eeb5..f51f8f9 100644 --- a/apps/frontend/src/app/components/profile/profile.component.ts +++ b/apps/frontend/src/app/components/profile/profile.component.ts @@ -58,8 +58,8 @@ import { PrimaryBadge } from '@library/shared-types'; } -