Merge pull request #72 from cubedro/develop
Fixed api version if undefined
This commit is contained in:
commit
cf188e454a
@ -252,7 +252,7 @@ angular.module('netStatsApp.filters', [])
|
||||
}
|
||||
|
||||
if(node.info.client !== '') {
|
||||
string = "API: <b>" + (typeof node.info.client !== 'undefined' ? node.info.client : '> 0.0.3') + "</b>";
|
||||
string = "API: <b>" + (typeof node.info.client !== 'undefined' ? node.info.client : '<= 0.0.3') + "</b>";
|
||||
|
||||
tooltip.push(string);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user