diff --git a/app/Http/Livewire/Server/Proxy.php b/app/Http/Livewire/Server/Proxy.php index b01db728c..fe3ed74f3 100644 --- a/app/Http/Livewire/Server/Proxy.php +++ b/app/Http/Livewire/Server/Proxy.php @@ -2,6 +2,7 @@ namespace App\Http\Livewire\Server; +use App\Enums\ActivityTypes; use App\Models\Server; use Livewire\Component; @@ -18,7 +19,7 @@ class Proxy extends Component public function runInstallProxy() { - $activity = remoteProcess(['ls -alh'], $this->server); + $activity = remoteProcess(['ls -alh'], $this->server, ActivityTypes::INLINE->value); $this->emit('newMonitorActivity', $activity->id); }