Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion web/app/_components/InputToolbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,15 @@ const InputToolbar: React.FC = () => {
}

if (!activeConvoId) {
return null
return (
<div className="my-3 flex justify-center gap-2">
<SecondaryButton
onClick={onNewConversationClick}
title="New Conversation"
icon={<PlusIcon width={16} height={16} />}
/>
</div>
)
}
if (
(activeConvoId && inputState === 'model-mismatch') ||
Expand Down
2 changes: 1 addition & 1 deletion web/screens/Settings/CorePlugins/PluginsCatalog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ const PluginCatalog = () => {
Installed{' '}
{hasUpdateVersionPlugins
? `v${installedPlugin.version}`
: 'latest version'}
: 'the latest version'}
</p>
)}
{isActivePlugin && hasUpdateVersionPlugins && (
Expand Down