]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/dashboard: Update and correct zonegroup delete notification 60959/head
authorAashish Sharma <aasharma@li-e74156cc-2f67-11b2-a85c-e98659a63c5c.ibm.com>
Thu, 5 Dec 2024 05:37:13 +0000 (11:07 +0530)
committerAashish Sharma <aasharma@li-e74156cc-2f67-11b2-a85c-e98659a63c5c.ibm.com>
Thu, 5 Dec 2024 05:39:38 +0000 (11:09 +0530)
while deleting zone group from dashboard, notification message says "zone <zg_name> deleted successfully" instead of "zone group <zg_name> deleted successfully"

Fixes: https://tracker.ceph.com/issues/69121
Signed-off-by: Aashish Sharma <aasharma@redhat.com>
src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts

index 3e146ef7ad53434cfa387199a953d1a085a58956..f96ec0ccffa7fd3c9bc3e0f7bc524f156d9d476b 100644 (file)
@@ -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();
       });