assistant panel: Update active tab in config panel when provider changes (#15621)

Release Notes:

- N/A

Co-authored-by: Bennet <bennet@zed.dev>
This commit is contained in:
Thorsten Ball 2024-08-01 17:24:55 +02:00 committed by GitHub
parent 6c83c7906a
commit ed7952f5ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -929,6 +929,15 @@ impl AssistantPanel {
if let Some(configuration_item_ix) = configuration_item_ix {
self.pane.update(cx, |pane, cx| {
pane.activate_item(configuration_item_ix, true, true, cx);
if let Some((item, provider)) =
pane.item_for_index(configuration_item_ix).zip(provider)
{
if let Some(view) = item.downcast::<ConfigurationView>() {
view.update(cx, |view, cx| {
view.set_active_tab(provider, cx);
});
}
}
});
} else {
let configuration = cx.new_view(|cx| {