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

Commit

Permalink
feat(search): Add submitter_id as hidden field
Browse files Browse the repository at this point in the history
Closes #1041
  • Loading branch information
mjschranz committed Jul 9, 2015
1 parent 59dcc18 commit 2ce7350
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion app/scripts/search/search.participants.table.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,12 @@ module ngApp.search.models {
td: (row, $scope) => row.clinical && $scope.$filter("humanify")(row.clinical.race),
sortable: false,
hidden: true
}, {
name: 'Submitter ID',
id: 'submitter_id',
td: (row, $scope) => row.submitter_id,
sortable: false,
hidden: true
}],
fields: [
"participant_id",
Expand All @@ -223,7 +229,8 @@ module ngApp.search.models {
"project.name",
"project.primary_site",
"project.program.name",
"project.disease_type"
"project.disease_type",
"submitter_id"
],
expand: [
"summary.data_types",
Expand Down

0 comments on commit 2ce7350

Please sign in to comment.