feat: add thread status read views

This commit is contained in:
kris
2026-04-04 11:39:06 +08:00
parent 7d578aa12f
commit 010d8eda2d
8 changed files with 580 additions and 1 deletions

View File

@@ -762,7 +762,7 @@ export function ChatBubble({ message }: { message: Message }) {
export function ProjectHeaderActions({ projectId }: { projectId: string }) {
return (
<div className="grid grid-cols-3 gap-3">
<div className="grid grid-cols-2 gap-3 sm:grid-cols-4">
<Link
href={`/conversations/${projectId}/goals`}
className="flex h-11 items-center justify-center rounded-2xl bg-[#EAF7F0] text-[14px] font-semibold text-[#215B39]"
@@ -781,6 +781,14 @@ export function ProjectHeaderActions({ projectId }: { projectId: string }) {
>
</Link>
<Link
href={`/api/v1/projects/${projectId}/thread-status`}
target="_blank"
rel="noreferrer"
className="flex h-11 items-center justify-center rounded-2xl bg-white text-[14px] font-semibold text-[#111111]"
>
线
</Link>
</div>
);
}