From a5e3b396d5052ffb9590a697e23683aef8fa633f Mon Sep 17 00:00:00 2001 From: dcore94 Date: Thu, 9 Feb 2023 16:42:05 +0100 Subject: [PATCH] call correct update function --- ccp/js/methodlistcontroller2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccp/js/methodlistcontroller2.js b/ccp/js/methodlistcontroller2.js index 33f9730..aace1f3 100644 --- a/ccp/js/methodlistcontroller2.js +++ b/ccp/js/methodlistcontroller2.js @@ -255,7 +255,7 @@ class CCPMethodList2 extends HTMLElement{ throw "Unable to import" }else return reply.text() }).then(data=>{ - this.updateList() + this.fetchProcesses() }).catch(err=>{ alert(err) }) } }