From 96352eca3c33f4fb8aac15a71333a5c42216adb5 Mon Sep 17 00:00:00 2001 From: zef Date: Wed, 12 Feb 2025 18:32:44 -0800 Subject: [PATCH] Display initiation key under input vars column for pending processes --- install/cws-ui/processes.ftl | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/install/cws-ui/processes.ftl b/install/cws-ui/processes.ftl index 4c0f8b1a..532aa009 100644 --- a/install/cws-ui/processes.ftl +++ b/install/cws-ui/processes.ftl @@ -523,7 +523,19 @@ data: { inputVariables: "inputVariables", procStartTime: "procStartTime"}, render: function (data, type) { if (jQuery.isEmptyObject(data.inputVariables)) { - return "None"; + if (jQuery.isEmptyObject(data.initiationKey)) { + return "None"; + } + else { + temp = `
` + + `
initiationKey:

` + data.initiationKey + `

` + + `
` + + `
` + + `` + + `` + + `
`; + return temp; + } } if (type === 'display') { var output = "";