mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 14:29:45 +00:00
Merge branch 'next/minor' of github.com:Start9Labs/start-os into next/major
This commit is contained in:
@@ -42,7 +42,7 @@ import { TuiIcon, TuiLoader } from '@taiga-ui/core'
|
||||
})
|
||||
export class ServiceHealthCheckComponent {
|
||||
@Input({ required: true })
|
||||
check!: T.HealthCheckResult
|
||||
check!: T.NamedHealthCheckResult
|
||||
|
||||
@Input()
|
||||
connected = false
|
||||
|
||||
@@ -31,7 +31,7 @@ import { ConnectionService } from 'src/app/services/connection.service'
|
||||
})
|
||||
export class ServiceHealthChecksComponent {
|
||||
@Input({ required: true })
|
||||
checks: readonly T.HealthCheckResult[] = []
|
||||
checks: readonly T.NamedHealthCheckResult[] = []
|
||||
|
||||
readonly connected$ = inject(ConnectionService)
|
||||
}
|
||||
|
||||
@@ -329,7 +329,7 @@ export class ServiceRoute {
|
||||
}
|
||||
}
|
||||
|
||||
function toHealthCheck(main: T.MainStatus): T.HealthCheckResult[] | null {
|
||||
function toHealthCheck(main: T.MainStatus): T.NamedHealthCheckResult[] | null {
|
||||
return main.status !== 'running' || isEmptyObject(main.health)
|
||||
? null
|
||||
: Object.values(main.health)
|
||||
|
||||
@@ -35,7 +35,6 @@ export class StartOsUiComponent {
|
||||
description: 'The primary web user interface for StartOS',
|
||||
type: 'ui',
|
||||
hasPrimary: false,
|
||||
disabled: false,
|
||||
masked: false,
|
||||
addressInfo: {
|
||||
hostId: '',
|
||||
|
||||
Reference in New Issue
Block a user