From: Aashish Sharma Date: Thu, 5 Dec 2024 05:37:13 +0000 (+0530) Subject: mgr/dashboard: Update and correct zonegroup delete notification X-Git-Tag: testing/wip-vshankar-testing-20241219.063429-debug~58^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=48dd55a0ad469f14d7a530d8c6aaf6f3aab2be43;p=ceph-ci.git 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 --- 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 3e146ef7ad5..f96ec0ccffa 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(); });