From 989d57078d83ab46b8d09b45dd27a7493b2895ba Mon Sep 17 00:00:00 2001 From: dcore94 Date: Wed, 29 Mar 2023 16:20:30 +0200 Subject: [PATCH] added infras info to executions --- ccp/js/executionhistorycontroller.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index 22a7ae1..f2ca7c4 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -453,6 +453,7 @@ class CCPExecutionHistory extends HTMLElement { const t = infra.type.match(/docker/i) ? "docker" : null const t2 = !t && infra.type.match(/lxd/i) ? "lxd" : t e.classList.add(t2) + } }, { target : "ul",