Skip to content

Commit

Permalink
Merge pull request #452 from nitram509/feature/links-to-list-views
Browse files Browse the repository at this point in the history
feat(ui) links from top level 'incidents', 'jobs', and 'errors' to corresponding instance
  • Loading branch information
saig0 authored Oct 13, 2022
2 parents dd6301d + 8adfc71 commit b88f0cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/templates/error-list-view.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<td>{{errorEventPosition}}</td>
<td>
{{#processInstanceKey}}
<a href="{{context-path}}views/instances/{{processInstanceKey}}">{{processInstanceKey}}</a>
<a href="{{context-path}}views/instances/{{processInstanceKey}}/error-list">{{processInstanceKey}}</a>
{{/processInstanceKey}}
</td>
<td>{{exceptionMessage}}</td>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/incident-list-view.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<tr>
<td>{{key}}</td>
<td>
<a href="{{context-path}}views/instances/{{processInstanceKey}}">{{processInstanceKey}}</a>
<a href="{{context-path}}views/instances/{{processInstanceKey}}/incident-list">{{processInstanceKey}}</a>
</td>
<td>{{bpmnProcessId}}</td>
<td>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/job-list-view.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<td>{{key}}</td>
<td>{{jobType}}</td>
<td>
<a href="{{context-path}}views/instances/{{processInstanceKey}}">{{processInstanceKey}}</a>
<a href="{{context-path}}views/instances/{{processInstanceKey}}/job-list">{{processInstanceKey}}</a>
</td>
<td>{{retries}}</td>
<td>{{state}}</td>
Expand Down

0 comments on commit b88f0cc

Please sign in to comment.