From: Dnyaneshwari Talwekar Date: Tue, 13 Jan 2026 07:24:09 +0000 (+0530) Subject: mgr/dashboard: [RGW-NFS]: User level export creation via UI fails with 500 - Internal... X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e964c47fcd0a6d492c2be3c01c9f5b8ce27bc5de;p=ceph.git mgr/dashboard: [RGW-NFS]: User level export creation via UI fails with 500 - Internal Server Error Fixes: https://tracker.ceph.com/issues/74383 Signed-off-by: Dnyaneshwari Talwekar (cherry picked from commit cebeab01bd318a6f65be07705d501a7ff45b6c27) --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/nfs/nfs-form/nfs-form.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/nfs/nfs-form/nfs-form.component.ts index 65e3f3acc9f5..7535e68b16e5 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/nfs/nfs-form/nfs-form.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/nfs/nfs-form/nfs-form.component.ts @@ -642,8 +642,7 @@ export class NfsFormComponent extends CdForm implements OnInit { } private buildRequest() { - const requestModel: any = _.cloneDeep(this.nfsForm.value); - requestModel.fsal = this.nfsForm.get('fsal').value; + const requestModel: any = _.cloneDeep(this.nfsForm.getRawValue()); if (this.isEdit) { requestModel.export_id = _.parseInt(this.export_id); requestModel.path = this.nfsForm.get('path').value;