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!
瀏覽代碼

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

pull/1/head
父節點
當前提交
b948c812f4
共有 1 個文件被更改,包括 7 次插入5 次删除
  1. +7
    -5
      frontend/src/js/component/wb-process-listing.js

+ 7
- 5
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;

Loading…
取消
儲存