feat(web): show conversation value group

This commit is contained in:
mlogclub
2026-05-02 11:34:58 +08:00
parent 0e0747bfc4
commit 853522404b
2 changed files with 8 additions and 0 deletions
@@ -101,6 +101,12 @@ export function ConversationList({ onAfterSelect }: ConversationListProps) {
>
{getEnumLabel(IMConversationStatusLabels, conversation.status)}
</span>
{conversation.status === IMConversationStatus.Pending &&
conversation.currentTeamName ? (
<span className="rounded bg-muted px-1 py-0.5">
{conversation.currentTeamName}
</span>
) : null}
</div>
</div>
</div>
+2
View File
@@ -43,6 +43,8 @@ export type AgentConversation = {
priority: number
currentAssigneeId: number
currentAssigneeName?: string
currentTeamId: number
currentTeamName?: string
lastMessageId: number
lastMessageAt?: string
lastActiveAt?: string