Skip to content

Commit

Permalink
Merge pull request #104 from LCOGT/filter_out_guideframes
Browse files Browse the repository at this point in the history
exclude GUIDE frames from the archive table in request detail view
  • Loading branch information
jnation3406 committed Feb 21, 2020
2 parents 539df88 + 8a63884 commit 6b38ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/components/archivetable.vue
Expand Up @@ -60,7 +60,7 @@
refreshTable: function() {
if (this.requestid) {
$('#archive-table').bootstrapTable('refresh',
{url: archiveRoot + 'frames/?limit=1000&REQNUM=' + this.requestid}
{url: archiveRoot + 'frames/?limit=1000&exclude_OBSTYPE=GUIDE&REQNUM=' + this.requestid}
);
}
}
Expand Down

0 comments on commit 6b38ca3

Please sign in to comment.