repositories
/
e-mobility-charging-stations-simulator.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d20c21a
)
Fixlet to configuration tunable value check.
author
Jérôme Benoit
<jerome.benoit@sap.com>
Mon, 19 Oct 2020 11:03:12 +0000
(13:03 +0200)
committer
Jérôme Benoit
<jerome.benoit@sap.com>
Mon, 19 Oct 2020 11:03:12 +0000
(13:03 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/Statistics.js
patch
|
blob
|
blame
|
history
diff --git
a/src/utils/Statistics.js
b/src/utils/Statistics.js
index 3ec5ef92647f7d35ab5b4c63263fad000673163d..5289a5749326c976500bb19987652d691cf2056b 100644
(file)
--- a/
src/utils/Statistics.js
+++ b/
src/utils/Statistics.js
@@
-70,7
+70,7
@@
class Statistics {
}
_displayInterval() {
- if (Configuration.getStatisticsDisplayInterval()
!==
0) {
+ if (Configuration.getStatisticsDisplayInterval()
>
0) {
setInterval(() => {
this._display();
}, Configuration.getStatisticsDisplayInterval() * 1000);