mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
dep copy change
This commit is contained in:
committed by
Aiden McClelland
parent
38e2fb9acd
commit
f9bdf1bc71
@@ -47,7 +47,7 @@ export class DependentsComponent {
|
|||||||
complete: () => {
|
complete: () => {
|
||||||
this.hasDependentViolation = this.dependentBreakages && !isEmptyObject(this.dependentBreakages)
|
this.hasDependentViolation = this.dependentBreakages && !isEmptyObject(this.dependentBreakages)
|
||||||
if (this.hasDependentViolation) {
|
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 {
|
} else {
|
||||||
this.message = `No other services installed on your Embassy will be affected by this action.`
|
this.message = `No other services installed on your Embassy will be affected by this action.`
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -305,7 +305,6 @@ export type DependencyError = DependencyErrorNotInstalled |
|
|||||||
DependencyErrorIncorrectVersion |
|
DependencyErrorIncorrectVersion |
|
||||||
DependencyErrorConfigUnsatisfied |
|
DependencyErrorConfigUnsatisfied |
|
||||||
DependencyErrorHealthChecksFailed |
|
DependencyErrorHealthChecksFailed |
|
||||||
DependencyErrorInterfaceHealthChecksFailed |
|
|
||||||
DependencyErrorTransitive
|
DependencyErrorTransitive
|
||||||
|
|
||||||
export enum DependencyErrorType {
|
export enum DependencyErrorType {
|
||||||
@@ -342,11 +341,6 @@ export interface DependencyErrorHealthChecksFailed {
|
|||||||
check: HealthCheckResult
|
check: HealthCheckResult
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DependencyErrorInterfaceHealthChecksFailed {
|
|
||||||
type: DependencyErrorType.InterfaceHealthChecksFailed
|
|
||||||
failures: { [id: string]: HealthCheckResult }
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface DependencyErrorTransitive {
|
export interface DependencyErrorTransitive {
|
||||||
type: DependencyErrorType.Transitive
|
type: DependencyErrorType.Transitive
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user