From bf4b9808c3b66101f42504888e65175a73996b90 Mon Sep 17 00:00:00 2001 From: Stephan Porada Date: Wed, 23 Oct 2019 11:23:06 +0200 Subject: [PATCH] Fix undefined JobList error --- app/static/js/JobList.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/static/js/JobList.js b/app/static/js/JobList.js index 6715cb00..fdcaddb7 100644 --- a/app/static/js/JobList.js +++ b/app/static/js/JobList.js @@ -24,6 +24,7 @@ class JobList extends List { pathArray = operation.path.split("/").slice(1); switch(operation.op) { case "add": + if (pathArray[1] === "results") {break;} this.addJob(operation.value); this.update(); List.updatePagination(this);