mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: change VSCodeTextField type from number to text for TypeScript compatibility
This commit is contained in:
parent
c60799f1b5
commit
f7f2dbbb09
1 changed files with 1 additions and 2 deletions
|
|
@ -180,8 +180,7 @@ export const OpenAICompatible = ({
|
|||
<div>
|
||||
<VSCodeTextField
|
||||
value={apiConfiguration?.openAiRequestTimeout?.toString() || ""}
|
||||
type="number"
|
||||
min="0"
|
||||
type="text"
|
||||
onInput={handleInputChange("openAiRequestTimeout", (e) => {
|
||||
const value = (e.target as HTMLInputElement).value
|
||||
const parsed = parseInt(value)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue