From 8a63884a798b5a4a32714d03942970e931502ba6 Mon Sep 17 00:00:00 2001 From: Jon Date: Thu, 20 Feb 2020 00:27:19 +0000 Subject: [PATCH] exclude GUIDE frames from the archive table in request detail view --- static/js/components/archivetable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/components/archivetable.vue b/static/js/components/archivetable.vue index ca12125c..24542bc5 100644 --- a/static/js/components/archivetable.vue +++ b/static/js/components/archivetable.vue @@ -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} ); } }