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

Commit

Permalink
chore(facets): remove tags & data submitter
Browse files Browse the repository at this point in the history
Close #1791
  • Loading branch information
alex-wilmer committed Mar 29, 2016
1 parent f3a1b04 commit 8a2a525
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions app/scripts/search/search.files.table.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,18 +142,6 @@ module ngApp.search.models {
td: (row, $scope) => row.platform && $scope.$filter("humanify")(row.platform),
sortable: false,
hidden: true
}, {
name: "Data Submitter",
id: "center.name",
td: (row, $scope) => row.center && $scope.$filter("humanify")(row.center.name),
sortable: false,
hidden: true
}, {
name: "Tags",
id: "tags",
td: row => (row.tags && row.tags.join(", ")) || "--",
sortable: false,
hidden: true
}],
fields: [
"access",
Expand All @@ -170,7 +158,6 @@ module ngApp.search.models {
"archive.archive_id",
"experimental_strategy",
"center.name",
"tags",
"submitter_id"
],
expand: [
Expand All @@ -186,9 +173,7 @@ module ngApp.search.models {
{name: "data_format", title: "Data Format", collapsed: false, facetType: "terms", removable: false },
{name: "platform", title: "Platform", collapsed: true, facetType: "terms", removable: false },
{name: "access", title: "Access Level", collapsed: true, facetType: "terms", removable: false },
{name: "center.name", title: "Data Submitter", collapsed: true, facetType: "terms", removable: false },
{name: "state", title: "File Status", collapsed: true, facetType: "terms", removable: false },
{name: "tags", title: "Tags", collapsed: true, facetType: "terms", removable: false }
]
};
angular.module("search.table.files.model", [])
Expand Down

0 comments on commit 8a2a525

Please sign in to comment.