From 9d04bb7e594704c6ffcda7eb9fedb618df167611 Mon Sep 17 00:00:00 2001
From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com>
Date: Wed, 15 Jul 2026 18:17:54 +0200
Subject: [PATCH] fix(backups): rename storage backup page heading
---
.../views/livewire/project/application/backup/show.blade.php | 4 ++--
tests/Feature/VolumeBackupTest.php | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/resources/views/livewire/project/application/backup/show.blade.php b/resources/views/livewire/project/application/backup/show.blade.php
index 7c9fbd828..3627dd862 100644
--- a/resources/views/livewire/project/application/backup/show.blade.php
+++ b/resources/views/livewire/project/application/backup/show.blade.php
@@ -1,8 +1,8 @@
- {{ data_get_str($application, 'name')->limit(10) }} > Storage Backups | Coolify
+ {{ data_get_str($application, 'name')->limit(10) }} > Backups | Coolify
- Storage Backups
+ Backups
diff --git a/tests/Feature/VolumeBackupTest.php b/tests/Feature/VolumeBackupTest.php
index e98d59ec7..eca66d6d8 100644
--- a/tests/Feature/VolumeBackupTest.php
+++ b/tests/Feature/VolumeBackupTest.php
@@ -181,7 +181,7 @@
$this->get(route('project.application.backup.show', [...$parameters, 'backup_uuid' => $backup->uuid]))
->assertOk()
- ->assertSee('Storage Backups
', false)
+ ->assertSee('Backups
', false)
->assertSee($volume->name);
});
@@ -208,7 +208,7 @@
$this->get(route('project.application.backup.show', [...$parameters, 'backup_uuid' => $backup->uuid]))
->assertOk()
- ->assertSee('Storage Backups
', false)
+ ->assertSee('Backups
', false)
->assertSee($directory->fs_path);
});