File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
app/admin/configuration/llm Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,6 @@ export function LLMProviderUpdateForm({
278
278
{ ! ( hideAdvanced && llmProviderDescriptor . name != "azure" ) && (
279
279
< >
280
280
< Separator />
281
-
282
281
{ llmProviderDescriptor . llm_names . length > 0 ? (
283
282
< SelectorFormField
284
283
name = "default_model_name"
@@ -298,7 +297,6 @@ export function LLMProviderUpdateForm({
298
297
placeholder = "E.g. gpt-4"
299
298
/>
300
299
) }
301
-
302
300
{ llmProviderDescriptor . deployment_name_required && (
303
301
< TextFormField
304
302
small = { hideAdvanced }
@@ -307,7 +305,6 @@ export function LLMProviderUpdateForm({
307
305
placeholder = "Deployment Name"
308
306
/>
309
307
) }
310
-
311
308
{ ! llmProviderDescriptor . single_model_supported &&
312
309
( llmProviderDescriptor . llm_names . length > 0 ? (
313
310
< SelectorFormField
@@ -344,7 +341,6 @@ export function LLMProviderUpdateForm({
344
341
/>
345
342
</ >
346
343
) }
347
-
348
344
{ showAdvancedOptions && (
349
345
< >
350
346
{ llmProviderDescriptor . llm_names . length > 0 && (
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export function AdvancedOptionsToggle({
20
20
size = "sm"
21
21
icon = { showAdvancedOptions ? FiChevronDown : FiChevronRight }
22
22
onClick = { ( ) => setShowAdvancedOptions ( ! showAdvancedOptions ) }
23
- className = "text-xs !p-0 text-text-950 hover:text-text-500"
23
+ className = "text-xs mr-auto !p-0 text-text-950 hover:text-text-500"
24
24
>
25
25
{ title || "Advanced Options" }
26
26
</ Button >
You can’t perform that action at this time.
0 commit comments