Skip to content

Commit

Permalink
fix(chat): fix isolated view with not installed model (Issue #2772) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaBondar authored Dec 11, 2024
1 parent ea5ed56 commit 2ceae5a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/chat/src/components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -749,13 +749,15 @@ export const ChatView = memo(() => {
isShowInput={
(!isReplay || isNotEmptyConversations) &&
!isExternal &&
(isModelsInstalled || isReplay)
(isModelsInstalled || isReplay || isIsolatedView)
}
>
<ChatInputControls
isNotEmptyConversations={isNotEmptyConversations}
showReplayControls={showReplayControls}
isModelsInstalled={isModelsInstalled}
isModelsInstalled={
isModelsInstalled || isIsolatedView
}
showScrollDownButton={showScrollDownButton}
onScrollDown={handleScrollDown}
/>
Expand Down

0 comments on commit 2ceae5a

Please sign in to comment.