fix: backup executions view
This commit is contained in:
parent
75d1ec4f42
commit
fe6073ba7d
1 changed files with 2 additions and 2 deletions
|
|
@ -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', []);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue