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

Commit

Permalink
feat(projects): add id and disease type to sort
Browse files Browse the repository at this point in the history
Closes #722
  • Loading branch information
Christine Yu committed May 4, 2015
1 parent a94622a commit 27b849e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/scripts/projects/projects.table.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,14 @@ module ngApp.projects.models {
var htm = '<a data-ng-href="/projects/' + project_id + '" data-tooltip="' + projectName +
'" tooltip-append-to-body="true" tooltip-placement="right">' + project_id + '</a>';
return htm;
}
},
sortable: true
}, {
displayName: "Disease Type",
id: "disease_type",
enabled: true,
fieldClass: 'truncated-cell'
fieldClass: 'truncated-cell',
sortable: true
}, {
displayName: "Primary Site",
id: "primary_site",
Expand Down

0 comments on commit 27b849e

Please sign in to comment.