From f9bdf1bc71e8e19b017aca3af40c4cf160291849 Mon Sep 17 00:00:00 2001 From: Drew Ansbacher Date: Wed, 10 Nov 2021 12:31:50 -0700 Subject: [PATCH] dep copy change --- .../install-wizard/dependents/dependents.component.ts | 2 +- ui/src/app/services/patch-db/data-model.ts | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/ui/src/app/components/install-wizard/dependents/dependents.component.ts b/ui/src/app/components/install-wizard/dependents/dependents.component.ts index d8988cfcc..418cc8686 100644 --- a/ui/src/app/components/install-wizard/dependents/dependents.component.ts +++ b/ui/src/app/components/install-wizard/dependents/dependents.component.ts @@ -47,7 +47,7 @@ export class DependentsComponent { complete: () => { this.hasDependentViolation = this.dependentBreakages && !isEmptyObject(this.dependentBreakages) if (this.hasDependentViolation) { - this.message = `${capitalizeFirstLetter(this.params.verb)} ${this.params.title} will prohibit the following services from functioning properly and will cause them to stop if they are currently running.` + this.message = `${capitalizeFirstLetter(this.params.verb)} ${this.params.title} will prohibit the following services from functioning properly and may cause them to stop if they are currently running.` } else { this.message = `No other services installed on your Embassy will be affected by this action.` } diff --git a/ui/src/app/services/patch-db/data-model.ts b/ui/src/app/services/patch-db/data-model.ts index 903a6e78b..b5570f2b1 100644 --- a/ui/src/app/services/patch-db/data-model.ts +++ b/ui/src/app/services/patch-db/data-model.ts @@ -305,7 +305,6 @@ export type DependencyError = DependencyErrorNotInstalled | DependencyErrorIncorrectVersion | DependencyErrorConfigUnsatisfied | DependencyErrorHealthChecksFailed | - DependencyErrorInterfaceHealthChecksFailed | DependencyErrorTransitive export enum DependencyErrorType { @@ -342,11 +341,6 @@ export interface DependencyErrorHealthChecksFailed { check: HealthCheckResult } -export interface DependencyErrorInterfaceHealthChecksFailed { - type: DependencyErrorType.InterfaceHealthChecksFailed - failures: { [id: string]: HealthCheckResult } -} - export interface DependencyErrorTransitive { type: DependencyErrorType.Transitive }