Skip to content

Commit

Permalink
#430 Display job parameters in the report page
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Sep 21, 2022
1 parent 6b80b4e commit dd15ed7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion www/src/app/core/services/common/AlertService.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default class AlertService {
startUpdate() {
this.update += 1;
if (!this.timer) {
this.timer = this.$interval(this.updateAlerts, 1000, 0, true, this);
this.timer = this.$interval(this.updateAlerts, 10000, 0, true, this);
}
}

Expand Down
3 changes: 3 additions & 0 deletions www/src/app/pages/jobs/job.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ <h1>Job details
<h3 class="box-title">Job report</h3>
</div>
<div class="box-body job-report">
<h5 class="text-primary">Parameters</h5>
<pre>{{$ctrl.job.parameters | json}}</pre>

<div ng-if="$ctrl.job.type === 'responder'">
<h5 class="text-primary">Input details</h5>
<pre>{{$ctrl.job.data | json}}</pre>
Expand Down

0 comments on commit dd15ed7

Please sign in to comment.