Add backup attachment restore idle state
This commit is contained in:
parent
56ccd02232
commit
8601baa7f5
13 changed files with 122 additions and 17 deletions
|
@ -45,6 +45,14 @@ export function Paused(args: PropsType): JSX.Element {
|
|||
return <BackupMediaDownloadProgress {...args} isPaused />;
|
||||
}
|
||||
|
||||
export function Idle(args: PropsType): JSX.Element {
|
||||
return <BackupMediaDownloadProgress {...args} isIdle />;
|
||||
}
|
||||
|
||||
export function PausedAndIdle(args: PropsType): JSX.Element {
|
||||
return <BackupMediaDownloadProgress {...args} isPaused isIdle />;
|
||||
}
|
||||
|
||||
export function Complete(args: PropsType): JSX.Element {
|
||||
return (
|
||||
<BackupMediaDownloadProgress {...args} downloadedBytes={args.totalBytes} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue