feat: add thread status read views
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user