mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 08:50:12 +00:00
Fix speed test alerts not generated
This commit is contained in:
parent
fdadaca950
commit
35be58ede9
6 changed files with 19 additions and 8 deletions
|
|
@ -324,10 +324,7 @@ $(document).ready(function() {
|
|||
sortable: false,
|
||||
render: function(data, type, row) {
|
||||
if(type === 'display' || type === 'filter') {
|
||||
if(row.value_js_formatter && row.last_measure)
|
||||
// Call the provided formatting function
|
||||
return window[row.value_js_formatter](row.last_measure);
|
||||
else if(row.last_measure)
|
||||
if(row.last_measure)
|
||||
return `${row.last_measure} ${row.unit}`
|
||||
else
|
||||
return "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue