Update AppUpdateProgress to add ellipsis to active download and installation labels for improved user feedback during update processes.

This commit is contained in:
Tom Butcher 2026-06-21 20:23:06 +01:00
parent 77ef061c15
commit 5201555cf8

View File

@ -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'
}