diff --git a/bower.json b/bower.json index 12becd3..3071ab8 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "strolch-wc-inspector", "description": "Strolch WebComponent Inspector", - "version": "0.19.4", + "version": "0.19.5", "authors": ["Robert von Burg"], "keywords": [ "strolch", diff --git a/strolch-wc-jobs.html b/strolch-wc-jobs.html index c29261d..6a23642 100644 --- a/strolch-wc-jobs.html +++ b/strolch-wc-jobs.html @@ -76,7 +76,7 @@
Mode
Running
Executions
-
Initial / Recurring Delay
+
Delay / CRON
Last / Total Duration
Last / Next Execution
@@ -92,8 +92,15 @@
[[item.mode]]
[[item.running]]
[[item.nrOfExecutions]]
-
[[item.initialDelay]] [[item.initialDelayTimeUnit]]
- [[item.delay]] [[item.delayTimeUnit]] +
+ + +
[[item.lastDuration]]
[[item.totalDuration]]
[[toLocalDateTime(item.lastExecution)]]
@@ -178,6 +185,9 @@ } }, + isSet: function (str) { + return str !== "-"; + }, toLocalDateTime: function (val) { return Strolch.toLocalDateTime(val); },