diff --git a/resources/views/livewire/project/service/storage.blade.php b/resources/views/livewire/project/service/storage.blade.php
index 97a089cf8..0888c1c8e 100644
--- a/resources/views/livewire/project/service/storage.blade.php
+++ b/resources/views/livewire/project/service/storage.blade.php
@@ -1,7 +1,8 @@
@if (
$resource->getMorphClass() == 'App\Models\Application' ||
- $resource->getMorphClass() == 'App\Models\StandalonePostgresql')
+ $resource->getMorphClass() == 'App\Models\StandalonePostgresql' ||
+ $resource->getMorphClass() == 'App\Models\StandaloneRedis')
Storages
Logs
- @if (Str::of($status)->startsWith('running'))
-
- @else
- Database is not running.
- @endif
+
@elseif ($type === 'service')
diff --git a/resources/views/livewire/server/proxy/deploy.blade.php b/resources/views/livewire/server/proxy/deploy.blade.php
index 41444fde4..afb1e25e5 100644
--- a/resources/views/livewire/server/proxy/deploy.blade.php
+++ b/resources/views/livewire/server/proxy/deploy.blade.php
@@ -12,7 +12,7 @@
@if ($currentRoute === 'server.proxy' && $traefikDashboardAvailable)
@else
-
diff --git a/resources/views/livewire/server/proxy/status.blade.php b/resources/views/livewire/server/proxy/status.blade.php
index b477752d7..65eebe037 100644
--- a/resources/views/livewire/server/proxy/status.blade.php
+++ b/resources/views/livewire/server/proxy/status.blade.php
@@ -1,6 +1,6 @@
@if ($server->isFunctional())
-
+
@if (data_get($server, 'proxy.status') === 'running')
@elseif (data_get($server, 'proxy.status') === 'restarting')
@@ -8,7 +8,9 @@
@else
@endif
- Refresh
+ @if (data_get($server, 'proxy.status') === 'running')
+ Refresh
+ @endif
@endif
diff --git a/resources/views/project/database/configuration.blade.php b/resources/views/project/database/configuration.blade.php
index 78daa3b0c..bed2f96ef 100644
--- a/resources/views/project/database/configuration.blade.php
+++ b/resources/views/project/database/configuration.blade.php
@@ -13,25 +13,23 @@