mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-19 01:51:21 +08:00
fix(jetbrains): widen provider api key dialog
This commit is contained in:
+1
-1
@@ -393,7 +393,7 @@ private class ProviderToolbarAction(
|
||||
}
|
||||
|
||||
private class ApiKeyDialog(title: String, method: ProviderAuthMethodDto?) : DialogWrapper(true) {
|
||||
private val key = JBPasswordField()
|
||||
private val key = JBPasswordField().apply { columns = 50 }
|
||||
private val fields = method?.prompts.orEmpty().associateWith { prompt ->
|
||||
if (prompt.options.isNotEmpty()) optionBox(prompt.options) as JComponent else JBTextField()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user