fix(environment): correct grammatical errors in helper text for environment variable sorting checkbox

This commit is contained in:
Andras Bacsai
2025-09-18 18:17:37 +02:00
parent 9ad5b8c37f
commit b0ff584ff4

View File

@@ -19,11 +19,11 @@
<div class="w-64"> <div class="w-64">
@can('manageEnvironment', $resource) @can('manageEnvironment', $resource)
<x-forms.checkbox id="is_env_sorting_enabled" label="Sort alphabetically" <x-forms.checkbox id="is_env_sorting_enabled" label="Sort alphabetically"
helper="Turn this off if one environment is dependent on an other. It will be sorted by creation order (like you pasted them or in the order you created them)." helper="Turn this off if one environment is dependent on another. It will be sorted by creation order (like you pasted them or in the order you created them)."
instantSave></x-forms.checkbox> instantSave></x-forms.checkbox>
@else @else
<x-forms.checkbox id="is_env_sorting_enabled" label="Sort alphabetically" <x-forms.checkbox id="is_env_sorting_enabled" label="Sort alphabetically"
helper="Turn this off if one environment is dependent on an other. It will be sorted by creation order (like you pasted them or in the order you created them)." helper="Turn this off if one environment is dependent on another. It will be sorted by creation order (like you pasted them or in the order you created them)."
disabled></x-forms.checkbox> disabled></x-forms.checkbox>
@endcan @endcan
</div> </div>