From 5201555cf84b210955247108db1d44700acc9b04 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 21 Jun 2026 20:23:06 +0100 Subject: [PATCH] Update AppUpdateProgress to add ellipsis to active download and installation labels for improved user feedback during update processes. --- .../Dashboard/Management/AppUpdates/AppUpdateProgress.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx b/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx index b4fa95e..d6c606f 100644 --- a/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx +++ b/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx @@ -32,7 +32,7 @@ const STAGE_CONFIG = { icon: CloudIcon, labels: { pending: 'Download', - active: 'Downloading', + active: 'Downloading...', complete: 'Downloaded', error: 'Download failed' } @@ -41,7 +41,7 @@ const STAGE_CONFIG = { icon: HostIcon, labels: { pending: 'Install', - active: 'Installing', + active: 'Installing...', complete: 'Installed', error: 'Install failed' }