mirror of
https://github.com/DataTables/DataTables.git
synced 2025-03-15 16:29:16 +01:00
Fix: null data should be returned as an empty string for HTML display
This commit is contained in:
parent
d242d9cad4
commit
341f6784f6
4
media/js/jquery.dataTables.js
vendored
4
media/js/jquery.dataTables.js
vendored
@ -6526,8 +6526,8 @@
|
||||
}
|
||||
}
|
||||
|
||||
if ( sSpecific == 'display' ) {
|
||||
return sData+'';
|
||||
if ( sSpecific == 'display' && sData === null ) {
|
||||
return '';
|
||||
}
|
||||
return sData;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user