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

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