Browse Source

fix: missing bot name in orchestrate (#20747)

tags/1.4.2
Joel 4 months ago
parent
commit
0c8447fd0e
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web/app/components/base/chat/chat/index.tsx

+ 1
- 1
web/app/components/base/chat/chat/index.tsx View File

@@ -303,7 +303,7 @@ const Chat: FC<ChatProps> = ({
{
!noChatInput && (
<ChatInputArea
botName={appData?.site.title || ''}
botName={appData?.site.title || 'Bot'}
disabled={inputDisabled}
showFeatureBar={showFeatureBar}
showFileUpload={showFileUpload}

Loading…
Cancel
Save