diff --git a/resources/views/servers/create.blade.php b/resources/views/servers/create.blade.php index 59109edd..b516c98a 100644 --- a/resources/views/servers/create.blade.php +++ b/resources/views/servers/create.blade.php @@ -103,7 +103,7 @@ x-model="selectedNest" @change="setEggs();"> + value="null">{{count($nests) > 0 ? __('Please select software ...') : __('---')}} @foreach ($nests as $nest) @endforeach @@ -229,10 +229,11 @@ + @@ -428,7 +433,7 @@ getNodeInputText() { if (this.fetchedLocations) { if (this.locations.length > 0) { - return '{{__('Please select a node...')}}'; + return '{{__('Please select a node ...')}}'; } return '{{__('No nodes found matching current configuration')}}' } @@ -438,7 +443,7 @@ getProductInputText() { if (this.fetchedProducts) { if (this.products.length > 0) { - return '{{__('Please select a resource...')}}'; + return '{{__('Please select a resource ...')}}'; } return '{{__('No resources found matching current configuration')}}' } @@ -447,7 +452,7 @@ getEggInputText() { if (this.selectedNest) { - return '{{__('Please select a configuration...')}}'; + return '{{__('Please select a configuration ...')}}'; } return '{{__('---')}}'; },