Skip to content

Commit

Permalink
Merge pull request #1085 from guerler/fix_grids_000
Browse files Browse the repository at this point in the history
[15.10] Fix dataset grid history change
  • Loading branch information
martenson committed Nov 20, 2015
2 parents 09db120 + 8e8b5d4 commit 286f714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/galaxy/controllers/dataset.py
Expand Up @@ -62,7 +62,7 @@ def get_accepted_filters( self ):
columns = [
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, inbound=True ),
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, inbound=True,
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" ),
Expand Down

0 comments on commit 286f714

Please sign in to comment.