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;

불러오는 중...
취소
저장