RelationInputDataManager: Fix prop-types

This commit is contained in:
Gustav Hansen 2022-11-02 15:43:31 +01:00
parent ea0d0c1558
commit 01accc69b1

View File

@ -215,6 +215,7 @@ export const RelationInputDataManager = ({
RelationInputDataManager.defaultProps = {
componentId: undefined,
componentUid: undefined,
editable: true,
error: undefined,
description: '',
@ -226,6 +227,7 @@ RelationInputDataManager.defaultProps = {
RelationInputDataManager.propTypes = {
componentId: PropTypes.number,
componentUid: PropTypes.string,
editable: PropTypes.bool,
error: PropTypes.string,
description: PropTypes.string,