fix: backup executions view

This commit is contained in:
Andras Bacsai
2024-06-05 11:44:10 +02:00
parent f5ccebfd41
commit 4fd3185d12
5 changed files with 6 additions and 7 deletions

View File

@@ -50,7 +50,7 @@ class BackupExecutions extends Component
public function refreshBackupExecutions(): void
{
if ($this->backup) {
$this->executions = $this->backup->executions()->get()->sortByDesc('created_at');
$this->executions = $this->backup->executions()->get();
}
}
}