From c7189a21c56d3030fd88104261e3331e51aaef20 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 21 Jun 2026 20:25:32 +0100 Subject: [PATCH] Add install detail to AppUpdateProgress for active installation status, improving user feedback during updates. --- .../Dashboard/Management/AppUpdates/AppUpdateProgress.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx b/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx index d6c606f..c456edf 100644 --- a/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx +++ b/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx @@ -161,6 +161,8 @@ const AppUpdateProgress = ({ progress, update, onClose }) => { ? `${downloaded} of ${total}` : null + const installDetail = installStatus === 'active' ? message : null + return ( @@ -181,6 +183,7 @@ const AppUpdateProgress = ({ progress, update, onClose }) => { stage='install' status={installStatus} percent={installPercent} + detail={installDetail} />