dep copy change

This commit is contained in:
Drew Ansbacher
2021-11-10 12:31:50 -07:00
committed by Aiden McClelland
parent 38e2fb9acd
commit f9bdf1bc71
2 changed files with 1 additions and 7 deletions

View File

@@ -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.`
}

View File

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