Skip to content

Commit

Permalink
fix: model selection does not show in API settings page (#1828)
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-jan committed Jan 29, 2024
1 parent 642d7aa commit 61d5c6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/containers/Layout/TopBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ const TopBar = () => {
showing && 'border-l border-border'
)}
>
{activeThread && (
{((activeThread && mainViewState === MainViewState.Thread) ||
mainViewState === MainViewState.LocalServer) && (
<div className="flex h-full w-52 items-center justify-between px-4">
{showing && (
<div className="relative flex h-full items-center">
Expand Down

0 comments on commit 61d5c6a

Please sign in to comment.