mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 23:12:35 +00:00
refactoring (#116)
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
This commit is contained in:
@ -36,8 +36,11 @@ class="mt-1 w-full"
|
||||
{{ __("Select") }}
|
||||
</option>
|
||||
<option value="root" @if(old('user') == 'root') selected @endif>root</option>
|
||||
<option value="{{ $server->ssh_user }}" @if(old('user') == $server->ssh_user) selected @endif>
|
||||
{{ $server->ssh_user }}
|
||||
<option
|
||||
value="{{ $server->getSshUser() }}"
|
||||
@if(old('user') == $server->getSshUser()) selected @endif
|
||||
>
|
||||
{{ $server->getSshUser() }}
|
||||
</option>
|
||||
</x-select-input>
|
||||
@error("user")
|
||||
|
Reference in New Issue
Block a user