diff --git a/web/projects/ui/src/app/routes/portal/routes/marketplace/marketplace.component.ts b/web/projects/ui/src/app/routes/portal/routes/marketplace/marketplace.component.ts index 43c574c0d..82c6e2d08 100644 --- a/web/projects/ui/src/app/routes/portal/routes/marketplace/marketplace.component.ts +++ b/web/projects/ui/src/app/routes/portal/routes/marketplace/marketplace.component.ts @@ -7,7 +7,7 @@ import { FilterPackagesPipe, FilterPackagesPipeModule, } from '@start9labs/marketplace' -import { defaultRegistries, i18nPipe } from '@start9labs/shared' +import { i18nPipe } from '@start9labs/shared' import { TuiScrollbar } from '@taiga-ui/core' import { tap } from 'rxjs' import { MarketplaceService } from 'src/app/services/marketplace.service' diff --git a/web/projects/ui/src/app/services/dep-error.service.ts b/web/projects/ui/src/app/services/dep-error.service.ts index 022037f99..9a1e53324 100644 --- a/web/projects/ui/src/app/services/dep-error.service.ts +++ b/web/projects/ui/src/app/services/dep-error.service.ts @@ -156,15 +156,14 @@ export class DepErrorService { const depStatus = getInstalledBaseStatus(dep.statusInfo) - // not running - if (depStatus !== 'running' && depStatus !== 'starting') { - return { - type: 'notRunning', - } - } - - // health check failure if (currentDep?.kind === 'running') { + // not running + if (depStatus !== 'running' && depStatus !== 'starting') { + return { + type: 'notRunning', + } + } + // health check failure for (let id of currentDep.healthChecks) { const check = dep.statusInfo.health[id] if (check?.result !== 'success') {