Merge branch 'next/minor' of github.com:Start9Labs/start-os into next/major

This commit is contained in:
Matt Hill
2024-08-28 15:49:28 -06:00
130 changed files with 4839 additions and 2114 deletions

View File

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

View File

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

View File

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

View File

@@ -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: '',