assistant panel: Make "Configure" button in menu open Configuration view (#15799)

Release Notes:

- N/A

Co-authored-by: Bennet <bennet@zed.dev>
This commit is contained in:
Thorsten Ball
2024-08-05 13:31:03 +02:00
committed by GitHub
co-authored by Bennet
parent 0fba36469b
commit 0d97b236e7
+4 -11
View File
@@ -1,8 +1,8 @@
use std::sync::Arc;
use crate::assistant_settings::AssistantSettings;
use crate::{assistant_settings::AssistantSettings, ShowConfiguration};
use fs::Fs;
use gpui::SharedString;
use gpui::{Action, SharedString};
use language_model::{LanguageModelAvailability, LanguageModelRegistry};
use proto::Plan;
use settings::update_settings_file;
@@ -98,15 +98,8 @@ impl<T: PopoverTrigger> RenderOnce for ModelSelector<T> {
}
},
{
let provider = provider.clone();
move |cx| {
LanguageModelRegistry::global(cx).update(
cx,
|completion_provider, cx| {
completion_provider
.set_active_provider(Some(provider.clone()), cx);
},
);
|cx| {
cx.dispatch_action(ShowConfiguration.boxed_clone());
}
},
);