fix(ui): replace mismatched upload icon with consistent arrow-up icon

This commit is contained in:
spinline
2026-02-04 23:16:43 +03:00
parent 75a0a37dba
commit a6a40997fb

View File

@@ -190,7 +190,7 @@ pub fn StatusBar() -> impl IntoView {
title="Global Upload Speed - Click to Set Limit" title="Global Upload Speed - Click to Set Limit"
> >
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4">
<path stroke-linecap="round" stroke-linejoin="round" d="M15 11.25l-3-3m0 0l-3 3m3-3v7.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /> <path stroke-linecap="round" stroke-linejoin="round" d="M4.5 10.5L12 3m0 0l7.5 7.5M12 3v18" />
</svg> </svg>
<span class="font-mono">{move || format_speed(stats.get().up_rate)}</span> <span class="font-mono">{move || format_speed(stats.get().up_rate)}</span>
<Show when=move || { stats.get().up_limit.unwrap_or(0) > 0 } fallback=|| ()> <Show when=move || { stats.get().up_limit.unwrap_or(0) > 0 } fallback=|| ()>