Can mark a comment as the answer, some layout changes

This commit is contained in:
jackiettran
2025-11-11 18:23:11 -05:00
parent 825389228d
commit b045fbeb01
11 changed files with 379 additions and 323 deletions

View File

@@ -261,10 +261,11 @@ export interface ForumPost {
content: string;
authorId: string;
category: "item_request" | "technical_support" | "community_resources" | "general_discussion";
status: "open" | "solved" | "closed";
status: "open" | "answered" | "closed";
viewCount: number;
commentCount: number;
isPinned: boolean;
acceptedAnswerId?: string;
author?: User;
tags?: PostTag[];
comments?: ForumComment[];