diff --git a/packages/strapi-plugin-content-manager/admin/src/components/InputJSONWithErrors/index.js b/packages/strapi-plugin-content-manager/admin/src/components/InputJSONWithErrors/index.js index 26dc65d483..77cd04281c 100644 --- a/packages/strapi-plugin-content-manager/admin/src/components/InputJSONWithErrors/index.js +++ b/packages/strapi-plugin-content-manager/admin/src/components/InputJSONWithErrors/index.js @@ -222,7 +222,11 @@ InputJSONWithErrors.propTypes = { style: PropTypes.object, tabIndex: PropTypes.string, validations: PropTypes.object, - value: PropTypes.object, + value: PropTypes.oneOfType([ + PropTypes.array, + PropTypes.object, + PropTypes.bool, + ]), }; export default InputJSONWithErrors;