|
@@ -56,7 +56,7 @@ function onExecutionFinished (evt) {
|
|
|
|
|
|
|
|
switch (actionButton.popupOnStart) {
|
|
switch (actionButton.popupOnStart) {
|
|
|
case 'execution-button':
|
|
case 'execution-button':
|
|
|
- document.querySelector('execution-button#execution-' + logEntry.uuid).onExecutionFinished(logEntry)
|
|
|
|
|
|
|
+ document.querySelector('execution-button#execution-' + logEntry.executionTrackingId).onExecutionFinished(logEntry)
|
|
|
break
|
|
break
|
|
|
case 'execution-dialog-stdout-only':
|
|
case 'execution-dialog-stdout-only':
|
|
|
case 'execution-dialog':
|
|
case 'execution-dialog':
|
|
@@ -414,6 +414,14 @@ export function marshalLogsJsonToHtml (json) {
|
|
|
row.querySelector('.exit-code').innerText = logTableExitCode
|
|
row.querySelector('.exit-code').innerText = logTableExitCode
|
|
|
row.setAttribute('title', logEntry.actionTitle)
|
|
row.setAttribute('title', logEntry.actionTitle)
|
|
|
|
|
|
|
|
|
|
+ row.querySelector('.content').onclick = () => {
|
|
|
|
|
+ window.executionDialog.reset()
|
|
|
|
|
+ window.executionDialog.show()
|
|
|
|
|
+ window.executionDialog.renderExecutionResult({
|
|
|
|
|
+ logEntry: window.logEntries[logEntry.executionTrackingId]
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
for (const tag of logEntry.tags) {
|
|
for (const tag of logEntry.tags) {
|
|
|
const domTag = document.createElement('span')
|
|
const domTag = document.createElement('span')
|
|
|
domTag.classList.add('tag')
|
|
domTag.classList.add('tag')
|