mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: Checking "Support Images" had no effect on first click (#1922)
This commit is contained in:
parent
7bc02926b4
commit
9449f5dcd1
2 changed files with 6 additions and 1 deletions
5
.changeset/rare-pigs-divide.md
Normal file
5
.changeset/rare-pigs-divide.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"claude-dev": patch
|
||||
---
|
||||
|
||||
Fix checking "Support Images" setting had no effect on first click
|
||||
|
|
@ -721,7 +721,7 @@ const ApiOptions = ({ showModelOptions, apiErrorMessage, modelIdErrorMessage, is
|
|||
{modelConfigurationSelected && (
|
||||
<>
|
||||
<VSCodeCheckbox
|
||||
checked={apiConfiguration?.openAiModelInfo?.supportsImages}
|
||||
checked={!!apiConfiguration?.openAiModelInfo?.supportsImages}
|
||||
onChange={(e: any) => {
|
||||
const isChecked = e.target.checked === true
|
||||
let modelInfo = apiConfiguration?.openAiModelInfo
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue