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:
Matt Hill
2025-09-17 10:32:20 -06:00
committed by GitHub
parent 1d331d7810
commit 7eecf29449
9 changed files with 60 additions and 99 deletions

View File

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