fix: Update remaining localhost placeholder in OllamaConfigurationPanel

Missed updating the placeholder text for new instance URL input field.
Changed from localhost:11434 to host.docker.internal:11434 for consistency.
This commit is contained in:
John Fitzpatrick 2025-09-20 13:51:24 -07:00
parent 2f486e5b21
commit aaca437fdc

View File

@ -686,7 +686,7 @@ const OllamaConfigurationPanel: React.FC<OllamaConfigurationPanelProps> = ({
/>
<Input
type="url"
placeholder="http://localhost:11434"
placeholder="http://host.docker.internal:11434"
value={newInstanceUrl}
onChange={(e) => setNewInstanceUrl(e.target.value)}
/>