From: Dnyaneshwari Talwekar Date: Wed, 22 Apr 2026 05:43:44 +0000 (+0530) Subject: mgr/dashboard: [snap-visibility]Edit Client config option remains stuck in loading... X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=820a57fa3255597552bd952bf59cce863347f856;p=ceph.git mgr/dashboard: [snap-visibility]Edit Client config option remains stuck in loading when nfs user is configured Fixes: https://tracker.ceph.com/issues/76200 Signed-off-by: Dnyaneshwari Talwekar --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts index 28b6d00589bd..f4a0557795a3 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts @@ -111,8 +111,9 @@ export class ConfigurationFormComponent extends CdForm implements OnInit { if (this.response.value) { this.response.value.forEach((value) => { - // Check value type. If it's a boolean value we need to convert it because otherwise we - // would use the string representation. That would cause issues for e.g. checkboxes. + if (!this.availSections.includes(value.section)) { + return; + } let sectionValue = null; if (value.value === 'true') { sectionValue = true;