Skip to content

Commit

Permalink
Do not display the "Embargo Type" in the Submission List filters.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladay committed May 28, 2024
1 parent 8ad36eb commit 7c902e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ vireo.controller("SubmissionListController", function (NgTableParams, $controlle

if (!!allSubmissionListFilters) {
submissionListColumns = allSubmissionListFilters.filter(function excludeCustomFilters(slc) {
return slc.title !== 'Search Box' && slc.title !== "Submission Type (List)";
return slc.title !== 'Search Box' && slc.title !== "Submission Type (List)" && slc.title != "Embargo Type";
});

submissionListColumnsForManage = allSubmissionListFilters.filter(function excludeSearchBox(slc) {
Expand Down

0 comments on commit 7c902e2

Please sign in to comment.