Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(annotation): remove annotator
Browse files Browse the repository at this point in the history
Closes #2106
  • Loading branch information
Christine Yu committed Apr 18, 2016
1 parent d34f69f commit d07075d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
10 changes: 0 additions & 10 deletions app/scripts/annotations/annotations.table.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@ module ngApp.projects.models {
id: "created_datetime",
td: (row, $scope) => row.created_datetime && $scope.$filter('date')(row.created_datetime, 'yyyy-MM-dd'),
},
{
name: "Annotator",
id: "creator",
td: row => row.creator,
sortable: true
},
{
name: "Status",
id: "status",
Expand All @@ -97,7 +91,6 @@ module ngApp.projects.models {
"annotation_id",
"category",
"created_datetime",
"creator",
"status",
"entity_type",
"entity_id",
Expand All @@ -122,9 +115,6 @@ module ngApp.projects.models {
}, {
name: 'created_datetime',
facetType: 'range'
}, {
name: 'creator',
facetType: 'terms'
}, {
name: 'status',
facetType: 'terms'
Expand Down
1 change: 0 additions & 1 deletion app/scripts/annotations/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ module ngApp.annotations {
fields: [
"annotation_id",
"category",
"creator",
"status",
"entity_type",
"entity_id",
Expand Down
4 changes: 0 additions & 4 deletions app/scripts/annotations/templates/annotation.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ <h3 class="panel-title" data-translate>Summary</h3>
<tr>
<th data-translate scope="row">Created On</th>
<td>{{ ::ac.annotation.created_datetime | date:'yyyy-MM-dd' }}</td>
<tr>
<th data-translate scope="row">Created By</th>
<td>{{ ::ac.annotation.creator | humanify }}</td>
</tr>
<tr>
<th data-translate scope="row">Status</th>
<td>{{ ::ac.annotation.status }}</td>
Expand Down

0 comments on commit d07075d

Please sign in to comment.