From dd15ed74b638578d56d89ce60bcd924180d67d51 Mon Sep 17 00:00:00 2001 From: To-om Date: Wed, 21 Sep 2022 16:27:08 +0200 Subject: [PATCH] #430 Display job parameters in the report page --- www/src/app/core/services/common/AlertService.js | 2 +- www/src/app/pages/jobs/job.page.html | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/www/src/app/core/services/common/AlertService.js b/www/src/app/core/services/common/AlertService.js index 6417ca25b..170fa0c32 100644 --- a/www/src/app/core/services/common/AlertService.js +++ b/www/src/app/core/services/common/AlertService.js @@ -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); } } diff --git a/www/src/app/pages/jobs/job.page.html b/www/src/app/pages/jobs/job.page.html index b8ceea0b8..cb369d592 100644 --- a/www/src/app/pages/jobs/job.page.html +++ b/www/src/app/pages/jobs/job.page.html @@ -18,6 +18,9 @@

Job details

Job report

+
Parameters
+
{{$ctrl.job.parameters | json}}
+
Input details
{{$ctrl.job.data | json}}