Skip to content

Commit

Permalink
Remove inbound handler
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Oct 5, 2017
1 parent 2a84f37 commit 6a52dcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/galaxy/controllers/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_accepted_filters(self):
grids.TextColumn("Name", key="name",
# Link name to dataset's history.
link=(lambda item: iff(item.history.deleted, None, dict(operation="switch", id=item.id))), filterable="advanced", attach_popup=True),
HistoryColumn("History", key="history", sortable=False, target="inbound",
HistoryColumn("History", key="history", sortable=False,
link=(lambda item: iff(item.history.deleted, None, dict(operation="switch_history", id=item.id)))),
grids.IndividualTagsColumn("Tags", key="tags", model_tag_association_class=model.HistoryDatasetAssociationTagAssociation, filterable="advanced", grid_name="HistoryDatasetAssocationListGrid"),
StatusColumn("Status", key="deleted", attach_popup=False),
Expand Down

0 comments on commit 6a52dcc

Please sign in to comment.