Skip to content

Commit

Permalink
Fix time dimension.
Browse files Browse the repository at this point in the history
Issue: #13
Reported by: @moisseev
  • Loading branch information
vstakhov committed Nov 6, 2015
1 parent 615585b commit db96fa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ <h5>History</h5>
<th class="col5" title="Score / Req.&nbsp;score">Score / Req.&nbsp;score</th>
<th class="col6" title="Symbols">Symbols</th>
<th class="col7" title="Size">Size</th>
<th class="col8" title="Scan Time (ms)"><div class="cell-overflow">Scan Time (ms)</div></th>
<th class="col8" title="Scan Time (s)"><div class="cell-overflow">Scan Time (s)</div></th>
<th class="col9" title="User">User</th>
</thead>
</table>
Expand Down
2 changes: 1 addition & 1 deletion js/rspamd.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@
'<td data-order="' + item.score + '"><span class="label ' + score + '">' + item.score.toFixed(2) + ' / ' + item.required_score.toFixed(2) + '</span></td>' +
'<td data-order="' + item.symbols + '"><div class="cell-overflow" tabindex="1" title="' + item.symbols + '">' + item.symbols + '</div></td>' +
'<td data-order="' + item.size + '">' + item.size + '</td>' +
'<td data-order="' + item.scan_time + '">' + item.scan_time + '</td>' +
'<td data-order="' + item.scan_time + '">' + item.scan_time.toFixed(3) + '</td>' +
'<td data-order="' + item.user + '"><div class="cell-overflow" tabindex="1" "title="' + item.user + '">' + item.user + '</div></td></tr>');
});
$('<tbody/>', { html: items.join('') }).insertAfter('#historyLog thead');
Expand Down

0 comments on commit db96fa9

Please sign in to comment.