diff --git a/resources/views/components/status/restarting.blade.php b/resources/views/components/status/restarting.blade.php index 0cbfeb0bc..50142de1a 100644 --- a/resources/views/components/status/restarting.blade.php +++ b/resources/views/components/status/restarting.blade.php @@ -7,7 +7,7 @@
{{ str($status)->before(':')->headline() }}
- @if (!str($status)->startsWith('Proxy')) + @if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
({{ str($status)->after(':') }})
@endif diff --git a/resources/views/components/status/running.blade.php b/resources/views/components/status/running.blade.php index b57f31bc0..b046266d1 100644 --- a/resources/views/components/status/running.blade.php +++ b/resources/views/components/status/running.blade.php @@ -7,7 +7,7 @@
{{ str($status)->before(':')->headline() }}
- @if (!str($status)->startsWith('Proxy')) + @if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
({{ str($status)->after(':') }})
@endif