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

Display UUID in project listing.

pull/1/head
parent
commit
0bb1ec1259
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      frontend/src/js/component/wb-project-listing.js

+ 4
- 1
frontend/src/js/component/wb-project-listing.js View File

@@ -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']
]);


Loading…
Cancel
Save