Skip to content

Commit

Permalink
Display process name in the workflow history panel
Browse files Browse the repository at this point in the history
  • Loading branch information
srinijammula committed Nov 4, 2024
1 parent 814fef3 commit 6a84407
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/resources/static/js/gw.workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -1149,12 +1149,14 @@ GW.workflow = {
})
.done(function (msg) {
msg = $.parseJSON(msg);
nodes = GW.workspace.theGraph.nodes;

var content =
'<div class="modal-body" style="font-size: 12px;"><table class="table"> ' +
" <thead> " +
" <tr> " +
' <th scope="col">Process Id</th> ' +
' <th scope="col">Process Name</th> ' +
' <th scope="col">History Id</th> ' +
' <th scope="col">Action</th> ' +
" </tr> " +
Expand All @@ -1168,6 +1170,9 @@ GW.workflow = {
msg.input[i] +
"</td> " +
" <td>" +
nodes[i]['title'] +
"</td> " +
" <td>" +
msg.output[i] +
"</td> " +
" <td><a href=\"javascript: GW.process.showHistoryDetails('" +
Expand Down

0 comments on commit 6a84407

Please sign in to comment.