Skip to content

Commit

Permalink
Add "new" state to list of dataset states in saved history list.
Browse files Browse the repository at this point in the history
  • Loading branch information
blankenberg committed Mar 17, 2016
1 parent 2bc3da6 commit 87bb98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/galaxy/controllers/history.py
Expand Up @@ -39,7 +39,7 @@ class HistoryListGrid( grids.Grid ):
class DatasetsByStateColumn( grids.GridColumn ):
def get_value( self, trans, grid, history ):
# States to show in column.
states_to_show = ( 'ok', 'running', 'queued', 'error' )
states_to_show = ( 'ok', 'running', 'queued', 'new', 'error' )

# Get dataset counts for each state in a state-count dictionary.
state_counts = dict( ( state, count ) for state, count in
Expand Down

0 comments on commit 87bb98e

Please sign in to comment.