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=cebeab01bd318a6f65be07705d501a7ff45b6c27;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 --- 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 8a7d34fe406..57458174dac 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 @@ -643,8 +643,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;