fix(backups): rename storage backup page heading
This commit is contained in:
parent
41eee14bd3
commit
9d04bb7e59
2 changed files with 4 additions and 4 deletions
|
|
@ -1,8 +1,8 @@
|
||||||
<div>
|
<div>
|
||||||
<x-slot:title>
|
<x-slot:title>
|
||||||
{{ data_get_str($application, 'name')->limit(10) }} > Storage Backups | Coolify
|
{{ data_get_str($application, 'name')->limit(10) }} > Backups | Coolify
|
||||||
</x-slot>
|
</x-slot>
|
||||||
<h1>Storage Backups</h1>
|
<h1>Backups</h1>
|
||||||
<livewire:project.shared.configuration-checker :resource="$application" />
|
<livewire:project.shared.configuration-checker :resource="$application" />
|
||||||
<livewire:project.application.heading :application="$application" />
|
<livewire:project.application.heading :application="$application" />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -181,7 +181,7 @@
|
||||||
|
|
||||||
$this->get(route('project.application.backup.show', [...$parameters, 'backup_uuid' => $backup->uuid]))
|
$this->get(route('project.application.backup.show', [...$parameters, 'backup_uuid' => $backup->uuid]))
|
||||||
->assertOk()
|
->assertOk()
|
||||||
->assertSee('<h1>Storage Backups</h1>', false)
|
->assertSee('<h1>Backups</h1>', false)
|
||||||
->assertSee($volume->name);
|
->assertSee($volume->name);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -208,7 +208,7 @@
|
||||||
|
|
||||||
$this->get(route('project.application.backup.show', [...$parameters, 'backup_uuid' => $backup->uuid]))
|
$this->get(route('project.application.backup.show', [...$parameters, 'backup_uuid' => $backup->uuid]))
|
||||||
->assertOk()
|
->assertOk()
|
||||||
->assertSee('<h1>Storage Backups</h1>', false)
|
->assertSee('<h1>Backups</h1>', false)
|
||||||
->assertSee($directory->fs_path);
|
->assertSee($directory->fs_path);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue