diff --git a/ccp/js/executionformcontroller.js b/ccp/js/executionformcontroller.js index 39b6cff..6883a0c 100644 --- a/ccp/js/executionformcontroller.js +++ b/ccp/js/executionformcontroller.js @@ -287,7 +287,10 @@ class CCPExecutionForm extends HTMLElement{ recurse : [ { target: ".ccp-method-title", - apply : (e,d)=>e.textContent = d.title + " (v. " + d.version + ")" + apply : (e,d)=>e.innerHTML = ` + ${d.title} ${d.version} + ${ d.metadata.filter(md=>md.role === 'author').map(a=>`${a.title}`)} + ` }, { target: "p.description", diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index d60fd12..fc33356 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -94,7 +94,7 @@ class CCPExecutionHistory extends HTMLElement {

- +