Skip to content

Commit

Permalink
V4.6-2 (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu authored Nov 9, 2023
1 parent 9f889d8 commit 0a0fe31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docSite/content/docs/installation/upgrading/46.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: 'FastGPT V4.6 更新'
icon: 'upgrade'
draft: false
toc: true
weight: 837
weight: 836
---

未正式发布。
Expand Down
9 changes: 2 additions & 7 deletions projects/app/src/components/ChatBox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ type Props = {
appAvatar?: string;
userAvatar?: string;
userGuideModule?: ModuleItemType;
active?: boolean;
active?: boolean; // can use
onUpdateVariable?: (e: Record<string, any>) => void;
onStartChat?: (e: StartChatFnProps) => Promise<{
responseText: string;
Expand Down Expand Up @@ -602,12 +602,7 @@ const ChatBox = (
{/* chat history */}
<Box id={'history'}>
{chatHistory.map((item, index) => (
<Box
key={item.dataId}
flexDirection={'column'}
alignItems={item.obj === 'Human' ? 'flex-end' : 'flex-start'}
py={5}
>
<Box key={item.dataId} py={5}>
{item.obj === 'Human' && (
<>
{/* control icon */}
Expand Down

0 comments on commit 0a0fe31

Please sign in to comment.