From f874276d0f2adb9fa280cdd7db9f3ca3c1d7161a Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Thu, 9 Sep 2021 15:57:17 +0530 Subject: [PATCH] Added some missing propTypes. --- web/pgadmin/static/js/SchemaView/FormView.jsx | 1 + web/pgadmin/static/js/components/FormComponents.jsx | 1 + 2 files changed, 2 insertions(+) diff --git a/web/pgadmin/static/js/SchemaView/FormView.jsx b/web/pgadmin/static/js/SchemaView/FormView.jsx index d689b4666..f872703ca 100644 --- a/web/pgadmin/static/js/SchemaView/FormView.jsx +++ b/web/pgadmin/static/js/SchemaView/FormView.jsx @@ -397,6 +397,7 @@ FormView.propTypes = { viewHelperProps: PropTypes.object, isNested: PropTypes.bool, isDataGridForm: PropTypes.bool, + isTabView: PropTypes.bool, visible: PropTypes.oneOfType([ PropTypes.bool, PropTypes.func, ]), diff --git a/web/pgadmin/static/js/components/FormComponents.jsx b/web/pgadmin/static/js/components/FormComponents.jsx index e52749cd1..5a218ac3a 100644 --- a/web/pgadmin/static/js/components/FormComponents.jsx +++ b/web/pgadmin/static/js/components/FormComponents.jsx @@ -786,6 +786,7 @@ InputSelect.propTypes = { options: PropTypes.oneOfType([PropTypes.array, PropTypes.instanceOf(Promise), PropTypes.func]), controlProps: PropTypes.object, optionsLoaded: PropTypes.func, + optionsReloadBasis: PropTypes.any, onChange: PropTypes.func, disabled: PropTypes.bool, readonly: PropTypes.bool,