diff --git a/resources/views/livewire/project/service/configuration.blade.php b/resources/views/livewire/project/service/configuration.blade.php
index d1ff54a5c..272de2f4f 100644
--- a/resources/views/livewire/project/service/configuration.blade.php
+++ b/resources/views/livewire/project/service/configuration.blade.php
@@ -172,7 +172,8 @@
Storages
Persistent storage to preserve data between deployments.
- Please modify storage layout in your Docker Compose file.
+ If you would like to add a volume, you must add it to
+ your compose file (General tab).
@foreach ($applications as $application)
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 d2693b983..42a2b48a7 100644
--- a/resources/views/livewire/project/shared/environment-variable/all.blade.php
+++ b/resources/views/livewire/project/shared/environment-variable/all.blade.php
@@ -6,19 +6,21 @@
+ {{ $view === 'normal' ? 'Developer view' : 'Normal view' }}
@endif
- {{ $view === 'normal' ? 'Developer view' : 'Normal view' }}
Environment variables (secrets) for this resource.
@if ($this->resourceClass === 'App\Models\Application' && data_get($this->resource, 'build_pack') !== 'dockercompose')
+ helper="Turn this off if one environment is dependent on an other. It will be sorted by creation order."
+ instantSave>
@endif
@if ($resource->type() === 'service' || $resource?->build_pack === 'dockercompose')
Hardcoded variables are not shown here.
+ If you would like to add a variable, you must add it to your compose file (General tab).
@endif
@if ($view === 'normal')
diff --git a/resources/views/livewire/project/shared/storages/show.blade.php b/resources/views/livewire/project/shared/storages/show.blade.php
index 935d0a43b..6b429a535 100644
--- a/resources/views/livewire/project/shared/storages/show.blade.php
+++ b/resources/views/livewire/project/shared/storages/show.blade.php
@@ -2,8 +2,15 @@