diff --git a/app/Livewire/Project/Database/BackupExecutions.php b/app/Livewire/Project/Database/BackupExecutions.php index a41336bda..f1918f990 100644 --- a/app/Livewire/Project/Database/BackupExecutions.php +++ b/app/Livewire/Project/Database/BackupExecutions.php @@ -8,7 +8,7 @@ class BackupExecutions extends Component { public $backup; - public $executions; + public $executions = []; public $setDeletableBackup; public function getListeners() { @@ -65,6 +65,6 @@ public function download($exeuctionId) } public function refreshBackupExecutions(): void { - $this->executions = $this->backup->executions; + $this->executions = data_get($this->backup, 'executions', []); } }