Skip to content

Commit

Permalink
Fix import of history datasets into library.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek authored and martenson committed Nov 10, 2015
1 parent 36797b3 commit ad01646
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var FolderRowView = Backbone.View.extend({
} else{
template = this.templateRowFolder();
}
} else if (folder_item.get('type') === 'file' || folder_item.get('model_class') === 'LibraryDataset'){
} else if (folder_item.get('type') === 'file' || folder_item.get('model_class') === 'LibraryDatasetDatasetAssociation'){
this.options.type = 'file';
if (folder_item.get('deleted')){
template = this.templateRowDeletedFile();
Expand Down

0 comments on commit ad01646

Please sign in to comment.