refactor(workflow): update RAG tool suggestions and improve filtering logic

This commit is contained in:
twwu
2025-09-03 16:05:55 +08:00
parent 58e598dac8
commit b4c98daa8d
11 changed files with 86 additions and 45 deletions

View File

@ -49,7 +49,10 @@ const ToolSelectorTrigger = ({
!!selectedTagsLength && (
<RiCloseCircleFill
className='size-4 text-text-quaternary'
onClick={() => onTagsChange([])}
onClick={(e) => {
e.stopPropagation()
onTagsChange([])
}}
/>
)
}