Merge pull request #1831 from mmbytesolutions/next

ui: visual feedback when container is unhealthy
This commit is contained in:
Andras Bacsai 2024-03-13 12:04:59 +01:00 committed by GitHub
commit 7fd0cfc85f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,6 +8,6 @@
{{ str($status)->before(':')->headline() }}
</div>
@if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
<div class="text-xs text-success">({{ str($status)->after(':') }})</div>
<div class="text-xs {{ str($status)->contains('unhealthy') ? 'text-warning' : 'text-success' }}">({{ str($status)->after(':') }})</div>
@endif
</div>