From 7aef50f1f4f28dd183d30f87e15e51d109a44d98 Mon Sep 17 00:00:00 2001 From: Dnyaneshwari Date: Fri, 11 Apr 2025 13:14:27 +0530 Subject: [PATCH] mgr/dashboard: RGW - Tiering form - secret key fix Fixes: https://tracker.ceph.com/issues/70888 Signed-off-by: Dnyaneshwari Talwekar --- .../rgw-storage-class-form/rgw-storage-class-form.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts index d380f08bcc0f6..25c4de89fd797 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts @@ -107,7 +107,7 @@ export class RgwStorageClassFormComponent extends CdForm implements OnInit { this.storageClassForm.get('endpoint').setValue(response.endpoint); this.storageClassForm.get('storage_class').setValue(this.storageClassInfo.storage_class); this.storageClassForm.get('access_key').setValue(response.access_key); - this.storageClassForm.get('secret_key').setValue(response.access_key); + this.storageClassForm.get('secret_key').setValue(response.secret); this.storageClassForm.get('target_path').setValue(response.target_path); this.storageClassForm .get('retain_head_object') -- 2.39.5