File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/kotlin/com/github/blarc/ai/commits/intellij/plugin/settings Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ class AppSettingsConfigurable : BoundConfigurable(message("settings.general.grou
3737 row {
3838 llmClientToolbarDecorator = ToolbarDecorator .createDecorator(llmClientTable.table)
3939 .setAddAction {
40- llmClientTable.addLlmClient()
40+ llmClientTable.addLlmClient().let {
41+ llmClientConfigurationComboBox.addItem(it)
42+ }
4143 }
4244 .setEditAction {
4345 llmClientTable.editLlmClient()?.let {
@@ -134,8 +136,6 @@ class AppSettingsConfigurable : BoundConfigurable(message("settings.general.grou
134136 }
135137
136138 override fun apply () {
137- // TODO @Blarc
138- // AppSettings2.instance.getActiveLLMClient().hosts.add(hostComboBox.item)
139139 promptTable.apply ()
140140 llmClientTable.apply ()
141141 super .apply ()
You can’t perform that action at this time.
0 commit comments