Add install detail to AppUpdateProgress for active installation status, improving user feedback during updates.
All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good

This commit is contained in:
Tom Butcher 2026-06-21 20:25:32 +01:00
parent 5201555cf8
commit c7189a21c5

View File

@ -161,6 +161,8 @@ const AppUpdateProgress = ({ progress, update, onClose }) => {
? `${downloaded} of ${total}` ? `${downloaded} of ${total}`
: null : null
const installDetail = installStatus === 'active' ? message : null
return ( return (
<Flex vertical gap='middle'> <Flex vertical gap='middle'>
<Text> <Text>
@ -181,6 +183,7 @@ const AppUpdateProgress = ({ progress, update, onClose }) => {
stage='install' stage='install'
status={installStatus} status={installStatus}
percent={installPercent} percent={installPercent}
detail={installDetail}
/> />
</Flex> </Flex>