From fd1d5fcb9bd5a9a3ad1706353bbc9af5423bfcca Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:36:25 -0300 Subject: [PATCH] settings_ui: Fix Ollama icon and other small UI details in EP subpage (#48612) Taking out unnecessary icons and description text, too! Release Notes: - N/A --- .../src/pages/edit_prediction_provider_setup.rs | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/crates/settings_ui/src/pages/edit_prediction_provider_setup.rs b/crates/settings_ui/src/pages/edit_prediction_provider_setup.rs index 4e77d99a6e96a184c13594c5c52887af1e65cc18..df091bd77254d73378cd0dde29869f415c468fef 100644 --- a/crates/settings_ui/src/pages/edit_prediction_provider_setup.rs +++ b/crates/settings_ui/src/pages/edit_prediction_provider_setup.rs @@ -135,11 +135,7 @@ fn render_provider_dropdown(window: &mut Window, cx: &mut App) -> AnyElement { .id("provider-selector") .min_w_0() .gap_1p5() - .child( - SettingsSectionHeader::new("Active Provider") - .icon(IconName::Sparkle) - .no_padding(true), - ) + .child(SettingsSectionHeader::new("Active Provider").no_padding(true)) .child( h_flex() .pt_2p5() @@ -350,14 +346,9 @@ fn render_ollama_provider( .gap_1p5() .child( SettingsSectionHeader::new("Ollama") - .icon(IconName::ZedPredict) + .icon(IconName::AiOllama) .no_padding(true), ) - .child( - Label::new("Configure the local Ollama server and model used for edit predictions.") - .size(LabelSize::Small) - .color(Color::Muted), - ) .child(div().px_neg_8().child(additional_fields)) }