diff --git a/app/Livewire/Project/Application/General.php b/app/Livewire/Project/Application/General.php index 0def08bb2..022a7b710 100644 --- a/app/Livewire/Project/Application/General.php +++ b/app/Livewire/Project/Application/General.php @@ -186,7 +186,7 @@ public function loadComposeFile($isInit = false) } $this->dispatch('success', 'Docker compose file loaded.'); $this->dispatch('compose_loaded'); - $this->dispatch('refreshStorages'); + $this->dispatch('refresh_storages'); } catch (\Throwable $e) { $this->application->docker_compose_location = $this->initialDockerComposeLocation; $this->application->docker_compose_pr_location = $this->initialDockerComposePrLocation; diff --git a/app/Livewire/Project/Service/FileStorage.php b/app/Livewire/Project/Service/FileStorage.php index c26e19554..1703caf8f 100644 --- a/app/Livewire/Project/Service/FileStorage.php +++ b/app/Livewire/Project/Service/FileStorage.php @@ -44,7 +44,7 @@ public function convertToDirectory() { } catch (\Throwable $e) { return handleError($e, $this); } finally { - $this->dispatch('storagesChanged'); + $this->dispatch('refresh_storages'); } } public function convertToFile() { @@ -57,7 +57,7 @@ public function convertToFile() { } catch (\Throwable $e) { return handleError($e, $this); } finally { - $this->dispatch('storagesChanged'); + $this->dispatch('refresh_storages'); } } public function delete() { @@ -68,7 +68,7 @@ public function delete() { } catch (\Throwable $e) { return handleError($e, $this); } finally { - $this->dispatch('storagesChanged'); + $this->dispatch('refresh_storages'); } } public function submit() diff --git a/app/Livewire/Project/Service/Storage.php b/app/Livewire/Project/Service/Storage.php index 77df92c6f..1d40f1741 100644 --- a/app/Livewire/Project/Service/Storage.php +++ b/app/Livewire/Project/Service/Storage.php @@ -12,7 +12,7 @@ public function getListeners() { return [ 'addNewVolume', - 'storagesChanged'=> '$refresh' + 'refresh_storages' => '$refresh', ]; } public function addNewVolume($data) @@ -28,7 +28,7 @@ public function addNewVolume($data) $this->resource->refresh(); $this->dispatch('success', 'Storage added successfully'); $this->dispatch('clearAddStorage'); - $this->dispatch('refreshStorages'); + $this->dispatch('refresh_storages'); } catch (\Throwable $e) { return handleError($e, $this); } diff --git a/app/Livewire/Project/Shared/Storages/All.php b/app/Livewire/Project/Shared/Storages/All.php index 18060da2a..14fa9b7b0 100644 --- a/app/Livewire/Project/Shared/Storages/All.php +++ b/app/Livewire/Project/Shared/Storages/All.php @@ -7,10 +7,5 @@ class All extends Component { public $resource; - protected $listeners = ['refreshStorages', 'storagesChanged' => '$refresh']; - - public function refreshStorages() - { - $this->resource->refresh(); - } + protected $listeners = ['refresh_storages' => '$refresh']; } diff --git a/app/Livewire/Project/Shared/Storages/Show.php b/app/Livewire/Project/Shared/Storages/Show.php index 0f65aa91e..5e35b796a 100644 --- a/app/Livewire/Project/Shared/Storages/Show.php +++ b/app/Livewire/Project/Shared/Storages/Show.php @@ -39,6 +39,6 @@ public function submit() public function delete() { $this->storage->delete(); - $this->dispatch('refreshStorages'); + $this->dispatch('refresh_storages'); } }