diff --git a/crates/assistant2/src/ui/context_pill.rs b/crates/assistant2/src/ui/context_pill.rs index 6e5de11728..3a5b81d4a9 100644 --- a/crates/assistant2/src/ui/context_pill.rs +++ b/crates/assistant2/src/ui/context_pill.rs @@ -145,14 +145,16 @@ impl RenderOnce for ContextPill { .color(Color::Muted), ) .child( - Label::new(match kind { - ContextKind::File => "Open File", - ContextKind::Thread | ContextKind::Directory | ContextKind::FetchedUrl => { - "Active" - } - }) - .size(LabelSize::XSmall) - .color(Color::Muted), + div().px_0p5().child( + Label::new(match kind { + ContextKind::File => "Active Tab", + ContextKind::Thread + | ContextKind::Directory + | ContextKind::FetchedUrl => "Active", + }) + .size(LabelSize::XSmall) + .color(Color::Muted), + ), ) .child( Icon::new(IconName::Plus)