From de2deedfd24a3fc2fa733dc17a151d17cf565299 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Fri, 2 Oct 2020 19:30:24 +0200 Subject: [PATCH] Do not refresh sequence list on raw_shots event. Otherwise, it will get refreshed continuously while online, which is not great. --- lib/www/client/source/src/views/SequenceList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/www/client/source/src/views/SequenceList.vue b/lib/www/client/source/src/views/SequenceList.vue index 7c757bb..4828a79 100644 --- a/lib/www/client/source/src/views/SequenceList.vue +++ b/lib/www/client/source/src/views/SequenceList.vue @@ -408,7 +408,7 @@ export default { }, async serverEvent (event) { - const subscriptions = ["raw_lines", "final_lines", "raw_shots", "final_shots"]; + const subscriptions = ["raw_lines", "final_lines", "final_shots"]; if (subscriptions.includes(event.channel) && event.payload.pid == this.$route.params.project) { if (!this.loading && !this.queuedReload) { // Do not force a non-cached response if refreshing as a result