From 1cdecf959fd8bebc0d9b908f15369a875bdf1122 Mon Sep 17 00:00:00 2001 From: Aashish Sharma Date: Thu, 5 Dec 2024 11:07:13 +0530 Subject: [PATCH] mgr/dashboard: Update and correct zonegroup delete notification while deleting zone group from dashboard, notification message says "zone deleted successfully" instead of "zone group deleted successfully" Fixes: https://tracker.ceph.com/issues/69121 Signed-off-by: Aashish Sharma (cherry picked from commit 48dd55a0ad469f14d7a530d8c6aaf6f3aab2be43) --- .../rgw-multisite-zonegroup-deletion-form.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts index 3e146ef7ad534..f96ec0ccffa7f 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts @@ -56,7 +56,7 @@ export class RgwMultisiteZonegroupDeletionFormComponent implements OnInit, After .subscribe(() => { this.notificationService.show( NotificationType.success, - $localize`Zone: '${this.zonegroup.name}' deleted successfully` + $localize`Zonegroup: '${this.zonegroup.name}' deleted successfully` ); this.activeModal.close(); }); -- 2.39.5