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!
소스 검색

Display UUID in project listing.

pull/1/head
부모
커밋
0bb1ec1259
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      frontend/src/js/component/wb-project-listing.js

+ 4
- 1
frontend/src/js/component/wb-project-listing.js 파일 보기

@@ -18,7 +18,10 @@ class WBProjectListing extends Component {
prepareRows(items) {
return items.map(item => [
item['name'],
(<div>
<div>{ item['name'] }</div>
<div>{ item['uuid'] }</div>
</div>),
item['description'],
item['owner_uuid']
]);


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