fix(backups): rename storage backup page heading

This commit is contained in:
Andras Bacsai 2026-07-15 18:17:54 +02:00
parent 41eee14bd3
commit 9d04bb7e59
2 changed files with 4 additions and 4 deletions

View file

@ -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" />

View file

@ -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);
}); });