Skip to content

Commit 61a3ab7

Browse files
committed
Associate folder icon with all doc tools use in thinking UX on web app
The newer grep_files and list_files should also be associated with document search in train of thought visualization on the web app.
1 parent 83ba844 commit 61a3ab7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/interface/web/app/components/chatMessage/chatMessage.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,11 @@ function chooseIconFromHeader(header: string, iconColor: string) {
312312
return <Toolbox className={`${classNames}`} />;
313313
}
314314

315-
if (compareHeader.includes("notes")) {
315+
if (
316+
compareHeader.includes("notes") ||
317+
compareHeader.includes("documents") ||
318+
compareHeader.includes("files")
319+
) {
316320
return <Folder className={`${classNames}`} />;
317321
}
318322

0 commit comments

Comments
 (0)