fix small issue

This commit is contained in:
Andras Bacsai 2023-08-10 17:55:03 +02:00
parent c66f250cd9
commit 1cafa02ba5
2 changed files with 4 additions and 1 deletions

View File

@ -13,11 +13,13 @@ class BackupEdit extends Component
'backup.enabled' => 'required|boolean',
'backup.frequency' => 'required|string',
'backup.number_of_backups_locally' => 'required|integer|min:1',
'backup.save_s3' => 'required|boolean',
];
protected $validationAttributes = [
'backup.enabled' => 'Enabled',
'backup.frequency' => 'Frequency',
'backup.number_of_backups_locally' => 'Number of Backups Locally',
'backup.save_s3' => 'Save to S3',
];
public function mount()
@ -25,6 +27,7 @@ public function mount()
$this->parameters = get_route_parameters();
}
public function delete()
{
// TODO: Delete backup from server and add a confirmation modal

View File

@ -16,7 +16,7 @@
<livewire:project.database.backup-execution :execution="$execution" :wire:key="$execution->id"/>
</form>
@empty
<div>No logs found.</div>
<div>No executions found.</div>
@endforelse
</div>