fix: sentry
This commit is contained in:
@@ -22,7 +22,7 @@ class BackupExecutions extends Component
|
|||||||
public function cleanupFailed()
|
public function cleanupFailed()
|
||||||
{
|
{
|
||||||
if ($this->backup) {
|
if ($this->backup) {
|
||||||
$this->backup?->executions()->where('status', 'failed')->delete();
|
$this->backup->executions()->where('status', 'failed')->delete();
|
||||||
$this->refreshBackupExecutions();
|
$this->refreshBackupExecutions();
|
||||||
$this->dispatch('success', 'Failed backups cleaned up.');
|
$this->dispatch('success', 'Failed backups cleaned up.');
|
||||||
}
|
}
|
||||||
@@ -49,6 +49,8 @@ class BackupExecutions extends Component
|
|||||||
}
|
}
|
||||||
public function refreshBackupExecutions(): void
|
public function refreshBackupExecutions(): void
|
||||||
{
|
{
|
||||||
$this->executions = $this->backup?->executions()->get()->sortByDesc('created_at');
|
if ($this->backup) {
|
||||||
|
$this->executions = $this->backup->executions()->get()->sortByDesc('created_at');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user