From 77044d51c7e3c4934a35e5fffe8aed83edab9705 Mon Sep 17 00:00:00 2001 From: ayntk-ai <122374094+ayntk-ai@users.noreply.github.com> Date: Mon, 12 Aug 2024 23:12:54 +0200 Subject: [PATCH] added missing heading and UI fix --- .../project/shared/environment-variable/all.blade.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/resources/views/livewire/project/shared/environment-variable/all.blade.php b/resources/views/livewire/project/shared/environment-variable/all.blade.php index 1fd4160ae..813ee5c52 100644 --- a/resources/views/livewire/project/shared/environment-variable/all.blade.php +++ b/resources/views/livewire/project/shared/environment-variable/all.blade.php @@ -14,7 +14,7 @@ @if ($this->resourceClass === 'App\Models\Application' && data_get($this->resource, 'build_pack') !== 'dockercompose')
@endif @@ -33,6 +33,10 @@ @endif @if ($view === 'normal') +
+

Production Environment Variables

+
Environment (secrets) variables for Production.
+
@forelse ($resource->environment_variables as $env) @@ -41,7 +45,7 @@ @endforelse @if ($resource->type() === 'application' && $resource->environment_variables_preview->count() > 0 && $showPreview)
-

Preview Deployments

+

Preview Deployments Environment Variables

Environment (secrets) variables for Preview Deployments.
@foreach ($resource->environment_variables_preview as $env) @@ -54,7 +58,7 @@ @if ($showPreview) - @endif