From 1a0a115fc177839c8831c338a9167b96af1ec867 Mon Sep 17 00:00:00 2001 From: pkellner Date: Tue, 27 Aug 2024 09:23:04 -0700 Subject: [PATCH] Update button label from "Developer view" to "Developer view (required to set variables at build time). Without this, there is no way for the browser user to know that these environmental variables ARE NOT available at build time. For newby-ish dev's that a subtle difference that is only manifested because of the way docker builds happen. --- .../project/shared/environment-variable/all.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 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 649d59a20..df93c3602 100644 --- a/resources/views/livewire/project/shared/environment-variable/all.blade.php +++ b/resources/views/livewire/project/shared/environment-variable/all.blade.php @@ -6,9 +6,9 @@ {{ $view === 'normal' ? 'Developer view' : 'Normal view' }} + wire:click='switch'>{{ $view === 'normal' ? 'Developer view' : 'Normal view (required to set variables at build time)' }} -
Environment variables (secrets) for this resource.
+
Environment variables (secrets) for this resource.
@if ($this->resourceClass === 'App\Models\Application' && data_get($this->resource, 'build_pack') !== 'dockercompose')