ML: Relax prop-types for UploadingAssetCard and PendingAssetStep

This commit is contained in:
Gustav Hansen 2022-06-07 12:21:46 +01:00
parent 1e9c66a351
commit 7ea93622fd
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ UploadingAssetCard.propTypes = {
rawFile: PropTypes.instanceOf(File),
type: PropTypes.oneOf(Object.values(AssetType)),
}).isRequired,
folderId: PropTypes.number,
folderId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
onCancel: PropTypes.func.isRequired,
onStatusChange: PropTypes.func.isRequired,
};

View File

@ -171,7 +171,7 @@ PendingAssetStep.defaultProps = {
PendingAssetStep.propTypes = {
addUploadedFiles: PropTypes.func,
assets: PropTypes.arrayOf(AssetDefinition).isRequired,
folderId: PropTypes.number,
folderId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
onClose: PropTypes.func.isRequired,
onEditAsset: PropTypes.func.isRequired,
onRemoveAsset: PropTypes.func.isRequired,