mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-07-12 21:02:17 +02:00
refactor: update input placeholder text from "Enter model ID" to "Enter model" in onboarding modal and settings dialog
This commit is contained in:
parent
6b0f31c369
commit
3ee1c2f2ab
2 changed files with 2 additions and 2 deletions
|
|
@ -666,7 +666,7 @@ export function OnboardingModal({ open, onComplete }: OnboardingModalProps) {
|
||||||
<Input
|
<Input
|
||||||
value={activeConfig.model}
|
value={activeConfig.model}
|
||||||
onChange={(e) => updateProviderConfig(llmProvider, { model: e.target.value })}
|
onChange={(e) => updateProviderConfig(llmProvider, { model: e.target.value })}
|
||||||
placeholder="Enter model ID"
|
placeholder="Enter model"
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<Select
|
<Select
|
||||||
|
|
|
||||||
|
|
@ -373,7 +373,7 @@ function ModelSettings({ dialogOpen }: { dialogOpen: boolean }) {
|
||||||
<Input
|
<Input
|
||||||
value={activeConfig.model}
|
value={activeConfig.model}
|
||||||
onChange={(e) => updateConfig(provider, { model: e.target.value })}
|
onChange={(e) => updateConfig(provider, { model: e.target.value })}
|
||||||
placeholder="Enter model ID"
|
placeholder="Enter model"
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<Select
|
<Select
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue