From cbda89bdedc0256f79ab5a7283439847308a6e71 Mon Sep 17 00:00:00 2001 From: dcore94 Date: Tue, 26 Nov 2024 18:23:09 +0100 Subject: [PATCH] fixed typo --- ccp/js/executionhistorycontroller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index 397c071..34d5142 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -965,7 +965,7 @@ class CCPExecutionHistory extends HTMLElement { { target : "li", "in" : (e,d)=>{ - const resources = d.resources ? d.resurces : [] + const resources = d.resources ? d.resources : [] return resources.map(l=>{ return { href : this.#serviceurl + "/executions/" + d.id + "/" + l.path, path : l.path} })