mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
fix dep error display, show starting if any health check starting, show disabled health check message, remove loader from service list, animated dots, better color (#3025)
* refector addresses to not need gateways array * fix dep error display, show starting if any health check starting, show disabled health check message, remove loader from service list, animated dots, better color * fix: fix action results textfields --------- Co-authored-by: waterplea <alexander@inkin.ru>
This commit is contained in:
@@ -126,13 +126,14 @@ export class DepErrorService {
|
||||
const expected = currentDep?.versionRange || ''
|
||||
|
||||
// incorrect version
|
||||
if (!this.exver.satisfies(depManifest.version, expected)) {
|
||||
if (depManifest.satisfies.some(v => !this.exver.satisfies(v, expected))) {
|
||||
return {
|
||||
expected,
|
||||
type: 'incorrectVersion',
|
||||
received: depManifest.version,
|
||||
}
|
||||
if (
|
||||
!this.exver.satisfies(depManifest.version, expected) &&
|
||||
!depManifest.satisfies.some(v => this.exver.satisfies(v, expected))
|
||||
) {
|
||||
return {
|
||||
expected,
|
||||
type: 'incorrectVersion',
|
||||
received: depManifest.version,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user