mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
account for presence of uninstalled service in backup progress (#1258)
This commit is contained in:
@@ -183,7 +183,7 @@ export class ServerBackupPage {
|
|||||||
.map(key => pkgs[key])
|
.map(key => pkgs[key])
|
||||||
const activeIndex = pkgArr.findIndex(
|
const activeIndex = pkgArr.findIndex(
|
||||||
pkg =>
|
pkg =>
|
||||||
pkg.installed.status.main.status === PackageMainStatus.BackingUp,
|
pkg.installed?.status.main.status === PackageMainStatus.BackingUp,
|
||||||
)
|
)
|
||||||
|
|
||||||
this.pkgs = pkgArr.map((pkg, i) => {
|
this.pkgs = pkgArr.map((pkg, i) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user