From 21b2135188c7148eca6787cd3dcf488e7f751af6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=B7=E7=94=B5=E8=8A=BD=E8=A1=A3?= Date: Sat, 9 May 2026 20:43:28 -0400 Subject: [PATCH] Use design's ArrowRight glyph on the home activity link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Match home.jsx's `View all history ` rather than the unicode arrow we shipped earlier — same gap-4 lockup, real icon. Trivial visual swap; no behavior change. --- crates/ely_app/src/shell/chrome/home/recap.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/crates/ely_app/src/shell/chrome/home/recap.rs b/crates/ely_app/src/shell/chrome/home/recap.rs index 48131b3..e42e5c1 100644 --- a/crates/ely_app/src/shell/chrome/home/recap.rs +++ b/crates/ely_app/src/shell/chrome/home/recap.rs @@ -8,6 +8,7 @@ use gpui::{ StatefulInteractiveElement, Styled, div, hsla, linear_color_stop, linear_gradient, px, rgb, rgba, }; +use gpui_component::IconName; use crate::shell::ElyShell; use crate::shell::chrome::{SERIF_FAMILY, render_glyph_for}; @@ -380,6 +381,9 @@ fn render_view_all_link(cx: &mut Context) -> AnyElement { .pt(px(10.0)) .border_t_1() .border_color(rgba(colors::DIVIDER)) + .flex() + .items_center() + .gap(px(4.0)) .text_size(px(11.5)) .text_color(rgb(colors::INK_3)) .cursor_pointer() @@ -387,7 +391,8 @@ fn render_view_all_link(cx: &mut Context) -> AnyElement { .on_click(cx.listener(|shell, _, window, cx| { shell.open_internal_tab("ely://history", window, cx); })) - .child("View all history →") + .child("View all history") + .child(IconName::ArrowRight) .into_any_element() }