IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

Fix default selection cell/sharing button render functions in WBProcessListing.

pull/1/head
parent
commit
b948c812f4
1 changed files with 7 additions and 5 deletions
  1. +7
    -5
      frontend/src/js/component/wb-process-listing.js

+ 7
- 5
frontend/src/js/component/wb-process-listing.js View File

@@ -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;

Loading…
Cancel
Save