Add a space between model and provider in ModelSelector to improve readability.

This commit is contained in:
MatrixDynamo 2024-09-14 03:19:24 +08:00 committed by GitHub
parent df62736ff6
commit 79cfbac11f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -624,7 +624,7 @@ export function ChatActions(props: {
items={models.map((m) => ({
title: `${m.displayName}${
m?.provider?.providerName
? "(" + m?.provider?.providerName + ")"
? " (" + m?.provider?.providerName + ")"
: ""
}`,
value: `${m.name}@${m?.provider?.providerName}`,