Fix table rendering on port search tab when VLAN is null

This commit is contained in:
Eric A. Miller
2014-07-08 21:19:18 -04:00
parent db53c00b12
commit bc6f941c0f
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2.028001
[BUG FIXES]
* Fix table rendering on port search tab when VLAN is null
2.028000 - 2014-07-01 2.028000 - 2014-07-01
[NEW FEATURES] [NEW FEATURES]

View File

@@ -42,7 +42,7 @@ $(document).ready(function() {
}, { }, {
"data": 'port_vlans.vlan', "data": 'port_vlans.vlan',
"render": function(data, type, row, meta) { "render": function(data, type, row, meta) {
return data; return data || '';
} }
} }
] ]