From fc97e33a7e2a3031a7cc65bf0da23b0001b1ee49 Mon Sep 17 00:00:00 2001 From: hrzlgnm Date: Tue, 28 Jan 2025 21:05:13 +0100 Subject: [PATCH] fix: Shorten text in version is already latest (#719) --- src/app.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index d865b1c..d536f3b 100644 --- a/src/app.rs +++ b/src/app.rs @@ -916,7 +916,8 @@ pub fn About() -> impl IntoView { size=ButtonSize::Tiny icon=icondata::MdiCheckCircleOutline > - "You are already on the latest version" + {move || version.get()} + " is the latest version" } }