From e032eb3e102a60985a6525f7eb81f3670511d516 Mon Sep 17 00:00:00 2001 From: dcore94 Date: Wed, 24 May 2023 17:25:27 +0200 Subject: [PATCH] consider ccpnote --- ccp/js/executionhistorycontroller.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index 01e6b12..c129cd2 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -62,7 +62,7 @@ class CCPExecutionHistory extends HTMLElement {
  • -
    +
    Z Y @@ -527,7 +527,11 @@ class CCPExecutionHistory extends HTMLElement { { target : "span[name=version]", apply : (e,d)=>{ - e.textContent = `${d.methodversion}` + if(d.ccpnote){ + e.textContent = `${d.ccpnote} (${d.methodversion})` + }else{ + e.textContent = `${d.methodversion}` + } } }, {