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}`
|
? `${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>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user