Added new file added to the navigation
This commit is contained in:
parent
d15f850bf7
commit
1e83705d97
1 changed files with 2 additions and 1 deletions
|
|
@ -337,7 +337,8 @@ export function Navigation({
|
|||
message.role === "user" &&
|
||||
(message.content.match(FILES_REGEX)?.[0] ?? null) !== null,
|
||||
)
|
||||
.map((message) => message.content.match(FILES_REGEX)?.[0] ?? null);
|
||||
.map((message) => message.content.match(FILES_REGEX)?.[0] ?? null)
|
||||
.concat(conversationDocs.map((doc) => doc.filename));
|
||||
|
||||
return (
|
||||
<div className="flex flex-col h-full bg-background">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue