Skip to content

Commit

Permalink
#1816 Display ID column
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Mar 5, 2021
1 parent 777902a commit 57cfb03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion frontend/app/views/components/org/custom-tags/tag-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ <h4>
<table class="table table-striped">
<thead>
<tr>
<th width="100">ID</th>
<th>
<a href class="text-default" ng-click="$vm.sortByField('predicate')">
Name
Expand Down Expand Up @@ -63,8 +64,9 @@ <h4>

<tbody>
<tr ng-repeat="tag in $vm.list.values">
<td>{{tag._id}}</td>
<td>
<span>{{tag.predicate}}</span>
<tag value="tag.predicate"></tag>
</td>
<td>
<span>{{tag.colour}}</span>
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/views/partials/admin/taxonomy/view.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h3 class="modal-title">{{::$modal.taxonomy.namespace}} taxonomy</h3>
<table class="table table-striped">
<thead>
<tr>
<th class="pl-0" width="200">Tag</th>
<th class="pl-0" width="200">Tag</th>
<th>Predicate</th>
<th>Value</th>
<th width="100">Color</th>
Expand Down

0 comments on commit 57cfb03

Please sign in to comment.