fix(web): rename AI channel to AI 对话

This commit is contained in:
2026-07-22 15:46:50 +08:00
parent fecff65975
commit 43ac9388ac
6 changed files with 9 additions and 9 deletions

View File

@@ -95,7 +95,7 @@ function channelLabel(channel: WorkspaceChannelDTO) {
case 'tasks':
return '工作计划'
case 'ai_sessions':
return 'AI 助手'
return 'AI 对话'
case 'notes_sources':
return '笔记资料'
case 'cron':

View File

@@ -110,7 +110,7 @@ export function ProjectAi({
<div className="project-channel-page project-ai-page overview-page">
<div className="overview-head">
<div>
<Title heading={4}>AI </Title>
<Title heading={4}>AI </Title>
<Text type="secondary"></Text>
</div>
</div>

View File

@@ -80,7 +80,7 @@ export function WorkspacePage({
const workspaceMetrics = [
{ title: '项目总数', value: projects.length, delta: `${urgentProjects} 个高优先级`, icon: <IconDashboard />, color: 'arcoblue' },
{ title: '未完成计划', value: unfinishedTasks.length, delta: '跨项目聚合', icon: <IconCheckCircleFill />, color: 'green' },
{ title: 'AI智能体', value: aiSessions.length, delta: '项目内上下文', icon: <IconRobot />, color: 'purple' },
{ title: 'AI 对话', value: aiSessions.length, delta: '项目内上下文', icon: <IconRobot />, color: 'purple' },
{ title: '知识资料', value: notes.length, delta: '笔记与资料合计', icon: <IconFile />, color: 'cyan' },
]
@@ -89,7 +89,7 @@ export function WorkspacePage({
<div className="overview-head">
<div>
<Title heading={4}></Title>
<Text type="secondary">AI智能体和知识资</Text>
<Text type="secondary">AI </Text>
</div>
</div>