Fix table rendering on port search tab when VLAN is null
This commit is contained in:
@@ -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]
|
||||||
|
|||||||
@@ -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 || '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user