diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-09-17 13:45:18 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-09-17 13:45:18 +0300 |
commit | 731af4c2a3f1052a3393d22f9ca6703821fd4429 (patch) | |
tree | 36ade9d697cc92a13201ac4b7b79ffe3c7ef4626 /interface/js/app/graph.js | |
parent | 954727f41c7ed5449206f035d4015d30b6c92f13 (diff) | |
download | rspamd-731af4c2a3f1052a3393d22f9ca6703821fd4429.tar.gz rspamd-731af4c2a3f1052a3393d22f9ca6703821fd4429.zip |
[Minor] Remove extra parentheses
Diffstat (limited to 'interface/js/app/graph.js')
-rw-r--r-- | interface/js/app/graph.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/js/app/graph.js b/interface/js/app/graph.js index 319ccda9e..bdd4da3fb 100644 --- a/interface/js/app/graph.js +++ b/interface/js/app/graph.js @@ -244,7 +244,7 @@ define(["jquery", "d3evolution", "footable"], action.map(function (d, i) { return { x: d.x, - y: ((res[j][i].y === null) ? d.y : res[j][i].y + d.y) + y: (res[j][i].y === null) ? d.y : res[j][i].y + d.y }; }) ); |