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
All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good
This commit is contained in:
parent
5201555cf8
commit
c7189a21c5
@ -161,6 +161,8 @@ const AppUpdateProgress = ({ progress, update, onClose }) => {
|
||||
? `${downloaded} of ${total}`
|
||||
: null
|
||||
|
||||
const installDetail = installStatus === 'active' ? message : null
|
||||
|
||||
return (
|
||||
<Flex vertical gap='middle'>
|
||||
<Text>
|
||||
@ -181,6 +183,7 @@ const AppUpdateProgress = ({ progress, update, onClose }) => {
|
||||
stage='install'
|
||||
status={installStatus}
|
||||
percent={installPercent}
|
||||
detail={installDetail}
|
||||
/>
|
||||
</Flex>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user