diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-05 09:27:40 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-05 09:27:40 +0300 |
commit | b6570edbce3c256808e831bd410c2e66bb7cafa9 (patch) | |
tree | d9b993e83f28705c470e45b98acd3f42e5d8b520 | |
parent | 9acc2ba905b7e4c24758475e497720fbb1e61229 (diff) | |
download | rspamd-b6570edbce3c256808e831bd410c2e66bb7cafa9.tar.gz rspamd-b6570edbce3c256808e831bd410c2e66bb7cafa9.zip |
[Minor] JS: Move dots to the same lines as the properties
-rw-r--r-- | interface/js/app/history.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 4f5f7b4d5..2d8c739fb 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -171,13 +171,13 @@ define(["jquery", "footable", "humanize"], } item.symbols[key].str = str; }); - item.symbols = Object.keys(item.symbols). - map(function(key) { + item.symbols = Object.keys(item.symbols) + .map(function(key) { return item.symbols[key]; - }). - sort(compare). - map(function(e) { return e.str; }). - join("<br>\n"); + }) + .sort(compare) + .map(function(e) { return e.str; }) + .join("<br>\n"); item.time = { "value": unix_time_format(item.unix_time), "options": { |