From 820a57fa3255597552bd952bf59cce863347f856 Mon Sep 17 00:00:00 2001 From: Dnyaneshwari Talwekar Date: Wed, 22 Apr 2026 11:13:44 +0530 Subject: [PATCH] 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 --- .../configuration-form/configuration-form.component.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; -- 2.47.3