From 945d0d38cfaf82fe1d06f8eb21b3d43c637070a3 Mon Sep 17 00:00:00 2001 From: mlogclub Date: Sat, 11 Apr 2026 14:02:09 +0800 Subject: [PATCH] feat: reorder AI serving option in conversation filter options --- web/lib/stores/agent-conversations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/lib/stores/agent-conversations.ts b/web/lib/stores/agent-conversations.ts index 5309d5a..71a508b 100644 --- a/web/lib/stores/agent-conversations.ts +++ b/web/lib/stores/agent-conversations.ts @@ -19,9 +19,9 @@ import { generateUUID } from "@/lib/utils" export const agentConversationFilterOptions = [ // { value: "mine", label: "我的" }, - { value: "ai_serving", label: "AI接待中" }, { value: "active", label: "处理中" }, { value: "pending", label: "待接入" }, + { value: "ai_serving", label: "AI接待中" }, { value: "closed", label: "已关闭" }, ] as const