From cd9e37bac5656fed52264987515038a9228bc336 Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Tue, 20 Jul 2021 12:01:53 +0530 Subject: [PATCH] Fix typo in fieldsetview also. --- web/pgadmin/static/js/SchemaView/FieldSetView.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pgadmin/static/js/SchemaView/FieldSetView.jsx b/web/pgadmin/static/js/SchemaView/FieldSetView.jsx index bcfb73e85..611f6e5f8 100644 --- a/web/pgadmin/static/js/SchemaView/FieldSetView.jsx +++ b/web/pgadmin/static/js/SchemaView/FieldSetView.jsx @@ -47,10 +47,10 @@ export default function FieldSetView({ let viewFields = []; /* Prepare the array of components based on the types */ schema.fields.forEach((field)=>{ - let {visible, disabled, readonly, modeSuppoted} = + let {visible, disabled, readonly, modeSupported} = getFieldMetaData(field, schema, value, viewHelperProps); - if(modeSuppoted) { + if(modeSupported) { /* Its a form control */ const hasError = field.id == formErr.name; /* When there is a change, the dependent values can change