diff --git a/frontend/src/js/component/wb-process-listing.js b/frontend/src/js/component/wb-process-listing.js index 96eaf49..45e0e35 100644 --- a/frontend/src/js/component/wb-process-listing.js +++ b/frontend/src/js/component/wb-process-listing.js @@ -115,11 +115,13 @@ class WBProcessListing extends Component { } WBProcessListing.defaultProps = { - 'itemsPerPage': 100, - 'ownerUuid': null, - 'requestingContainerUuid': null, - 'renderRenameLink': () => {}, - 'renderDeleteButton': () => {} + itemsPerPage: 100, + ownerUuid: null, + requestingContainerUuid: null, + renderRenameLink: () => null, + renderDeleteButton: () => null, + renderSelectionCell: () => null, + renderSharingButton: () => null }; export default WBProcessListing;