diff --git a/web/src/pages/agents/agent-card.tsx b/web/src/pages/agents/agent-card.tsx index 82731d5cfb..23661bda9e 100644 --- a/web/src/pages/agents/agent-card.tsx +++ b/web/src/pages/agents/agent-card.tsx @@ -9,6 +9,7 @@ import { AgentListItemType, IFlow } from '@/interfaces/database/agent'; import { CanvasCategoryToFlowType, FlowType, FlowTypeConfig } from './constant'; import { AgentDropdown } from './agent-dropdown'; import { useRenameAgent } from './use-rename-agent'; +import { Tag } from 'lucide-react'; export type DatasetCardProps = { data: IFlow & { type?: AgentListItemType }; @@ -48,8 +49,13 @@ function AgentTags({ tags }: { tags?: string }) { return (
{list.map((tag) => ( - - {tag} + + + {tag} ))}